1. Packages
  2. Outscale Provider
  3. API Docs
  4. getLoadBalancer
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

outscale.getLoadBalancer

Explore with Pulumi AI

outscale logo
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

    Provides information about a load balancer.

    For more information on this resource, see the User Guide.
    For more information on this resource actions, see the API documentation.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const loadBalancer01 = outscale.getLoadBalancer({
        filters: [{
            name: "load_balancer_names",
            values: ["load_balancer01"],
        }],
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    load_balancer01 = outscale.get_load_balancer(filters=[{
        "name": "load_balancer_names",
        "values": ["load_balancer01"],
    }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := outscale.LookupLoadBalancer(ctx, &outscale.LookupLoadBalancerArgs{
    			Filters: []outscale.GetLoadBalancerFilter{
    				{
    					Name: "load_balancer_names",
    					Values: []string{
    						"load_balancer01",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Outscale = Pulumi.Outscale;
    
    return await Deployment.RunAsync(() => 
    {
        var loadBalancer01 = Outscale.GetLoadBalancer.Invoke(new()
        {
            Filters = new[]
            {
                new Outscale.Inputs.GetLoadBalancerFilterInputArgs
                {
                    Name = "load_balancer_names",
                    Values = new[]
                    {
                        "load_balancer01",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.outscale.OutscaleFunctions;
    import com.pulumi.outscale.inputs.GetLoadBalancerArgs;
    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 loadBalancer01 = OutscaleFunctions.getLoadBalancer(GetLoadBalancerArgs.builder()
                .filters(GetLoadBalancerFilterArgs.builder()
                    .name("load_balancer_names")
                    .values("load_balancer01")
                    .build())
                .build());
    
        }
    }
    
    variables:
      loadBalancer01:
        fn::invoke:
          function: outscale:getLoadBalancer
          arguments:
            filters:
              - name: load_balancer_names
                values:
                  - load_balancer01
    

    Using getLoadBalancer

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getLoadBalancer(args: GetLoadBalancerArgs, opts?: InvokeOptions): Promise<GetLoadBalancerResult>
    function getLoadBalancerOutput(args: GetLoadBalancerOutputArgs, opts?: InvokeOptions): Output<GetLoadBalancerResult>
    def get_load_balancer(access_logs: Optional[Sequence[GetLoadBalancerAccessLog]] = None,
                          backend_vm_ids: Optional[Sequence[str]] = None,
                          dns_name: Optional[str] = None,
                          filters: Optional[Sequence[GetLoadBalancerFilter]] = None,
                          health_checks: Optional[Sequence[GetLoadBalancerHealthCheck]] = None,
                          id: Optional[str] = None,
                          listeners: Optional[Sequence[GetLoadBalancerListener]] = None,
                          load_balancer_name: Optional[str] = None,
                          load_balancer_type: Optional[str] = None,
                          net_id: Optional[str] = None,
                          security_groups: Optional[Sequence[str]] = None,
                          subnets: Optional[Sequence[str]] = None,
                          tags: Optional[Sequence[GetLoadBalancerTag]] = None,
                          opts: Optional[InvokeOptions] = None) -> GetLoadBalancerResult
    def get_load_balancer_output(access_logs: Optional[pulumi.Input[Sequence[pulumi.Input[GetLoadBalancerAccessLogArgs]]]] = None,
                          backend_vm_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                          dns_name: Optional[pulumi.Input[str]] = None,
                          filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetLoadBalancerFilterArgs]]]] = None,
                          health_checks: Optional[pulumi.Input[Sequence[pulumi.Input[GetLoadBalancerHealthCheckArgs]]]] = None,
                          id: Optional[pulumi.Input[str]] = None,
                          listeners: Optional[pulumi.Input[Sequence[pulumi.Input[GetLoadBalancerListenerArgs]]]] = None,
                          load_balancer_name: Optional[pulumi.Input[str]] = None,
                          load_balancer_type: Optional[pulumi.Input[str]] = None,
                          net_id: Optional[pulumi.Input[str]] = None,
                          security_groups: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                          subnets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                          tags: Optional[pulumi.Input[Sequence[pulumi.Input[GetLoadBalancerTagArgs]]]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetLoadBalancerResult]
    func LookupLoadBalancer(ctx *Context, args *LookupLoadBalancerArgs, opts ...InvokeOption) (*LookupLoadBalancerResult, error)
    func LookupLoadBalancerOutput(ctx *Context, args *LookupLoadBalancerOutputArgs, opts ...InvokeOption) LookupLoadBalancerResultOutput

    > Note: This function is named LookupLoadBalancer in the Go SDK.

    public static class GetLoadBalancer 
    {
        public static Task<GetLoadBalancerResult> InvokeAsync(GetLoadBalancerArgs args, InvokeOptions? opts = null)
        public static Output<GetLoadBalancerResult> Invoke(GetLoadBalancerInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetLoadBalancerResult> getLoadBalancer(GetLoadBalancerArgs args, InvokeOptions options)
    public static Output<GetLoadBalancerResult> getLoadBalancer(GetLoadBalancerArgs args, InvokeOptions options)
    
    fn::invoke:
      function: outscale:index/getLoadBalancer:getLoadBalancer
      arguments:
        # arguments dictionary

    The following arguments are supported:

    AccessLogs List<GetLoadBalancerAccessLog>
    Information about access logs.
    BackendVmIds List<string>
    One or more IDs of backend VMs for the load balancer.
    DnsName string
    The DNS name of the load balancer.
    Filters List<GetLoadBalancerFilter>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    HealthChecks List<GetLoadBalancerHealthCheck>
    Information about the health check configuration.
    Id string
    Listeners List<GetLoadBalancerListener>
    The listeners for the load balancer.
    LoadBalancerName string
    The name of the load balancer.
    LoadBalancerType string
    The type of load balancer. Valid only for load balancers in a Net. If load_balancer_type is internet-facing, the load balancer has a public DNS name that resolves to a public IP. If load_balancer_type is internal, the load balancer has a public DNS name that resolves to a private IP.
    NetId string
    The ID of the Net for the load balancer.
    SecurityGroups List<string>
    One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
    Subnets List<string>
    The ID of the Subnet in which the load balancer was created.
    Tags List<GetLoadBalancerTag>
    One or more tags associated with the load balancer.
    AccessLogs []GetLoadBalancerAccessLog
    Information about access logs.
    BackendVmIds []string
    One or more IDs of backend VMs for the load balancer.
    DnsName string
    The DNS name of the load balancer.
    Filters []GetLoadBalancerFilter
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    HealthChecks []GetLoadBalancerHealthCheck
    Information about the health check configuration.
    Id string
    Listeners []GetLoadBalancerListener
    The listeners for the load balancer.
    LoadBalancerName string
    The name of the load balancer.
    LoadBalancerType string
    The type of load balancer. Valid only for load balancers in a Net. If load_balancer_type is internet-facing, the load balancer has a public DNS name that resolves to a public IP. If load_balancer_type is internal, the load balancer has a public DNS name that resolves to a private IP.
    NetId string
    The ID of the Net for the load balancer.
    SecurityGroups []string
    One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
    Subnets []string
    The ID of the Subnet in which the load balancer was created.
    Tags []GetLoadBalancerTag
    One or more tags associated with the load balancer.
    accessLogs List<GetLoadBalancerAccessLog>
    Information about access logs.
    backendVmIds List<String>
    One or more IDs of backend VMs for the load balancer.
    dnsName String
    The DNS name of the load balancer.
    filters List<GetLoadBalancerFilter>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    healthChecks List<GetLoadBalancerHealthCheck>
    Information about the health check configuration.
    id String
    listeners List<GetLoadBalancerListener>
    The listeners for the load balancer.
    loadBalancerName String
    The name of the load balancer.
    loadBalancerType String
    The type of load balancer. Valid only for load balancers in a Net. If load_balancer_type is internet-facing, the load balancer has a public DNS name that resolves to a public IP. If load_balancer_type is internal, the load balancer has a public DNS name that resolves to a private IP.
    netId String
    The ID of the Net for the load balancer.
    securityGroups List<String>
    One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
    subnets List<String>
    The ID of the Subnet in which the load balancer was created.
    tags List<GetLoadBalancerTag>
    One or more tags associated with the load balancer.
    accessLogs GetLoadBalancerAccessLog[]
    Information about access logs.
    backendVmIds string[]
    One or more IDs of backend VMs for the load balancer.
    dnsName string
    The DNS name of the load balancer.
    filters GetLoadBalancerFilter[]
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    healthChecks GetLoadBalancerHealthCheck[]
    Information about the health check configuration.
    id string
    listeners GetLoadBalancerListener[]
    The listeners for the load balancer.
    loadBalancerName string
    The name of the load balancer.
    loadBalancerType string
    The type of load balancer. Valid only for load balancers in a Net. If load_balancer_type is internet-facing, the load balancer has a public DNS name that resolves to a public IP. If load_balancer_type is internal, the load balancer has a public DNS name that resolves to a private IP.
    netId string
    The ID of the Net for the load balancer.
    securityGroups string[]
    One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
    subnets string[]
    The ID of the Subnet in which the load balancer was created.
    tags GetLoadBalancerTag[]
    One or more tags associated with the load balancer.
    access_logs Sequence[GetLoadBalancerAccessLog]
    Information about access logs.
    backend_vm_ids Sequence[str]
    One or more IDs of backend VMs for the load balancer.
    dns_name str
    The DNS name of the load balancer.
    filters Sequence[GetLoadBalancerFilter]
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    health_checks Sequence[GetLoadBalancerHealthCheck]
    Information about the health check configuration.
    id str
    listeners Sequence[GetLoadBalancerListener]
    The listeners for the load balancer.
    load_balancer_name str
    The name of the load balancer.
    load_balancer_type str
    The type of load balancer. Valid only for load balancers in a Net. If load_balancer_type is internet-facing, the load balancer has a public DNS name that resolves to a public IP. If load_balancer_type is internal, the load balancer has a public DNS name that resolves to a private IP.
    net_id str
    The ID of the Net for the load balancer.
    security_groups Sequence[str]
    One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
    subnets Sequence[str]
    The ID of the Subnet in which the load balancer was created.
    tags Sequence[GetLoadBalancerTag]
    One or more tags associated with the load balancer.
    accessLogs List<Property Map>
    Information about access logs.
    backendVmIds List<String>
    One or more IDs of backend VMs for the load balancer.
    dnsName String
    The DNS name of the load balancer.
    filters List<Property Map>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    healthChecks List<Property Map>
    Information about the health check configuration.
    id String
    listeners List<Property Map>
    The listeners for the load balancer.
    loadBalancerName String
    The name of the load balancer.
    loadBalancerType String
    The type of load balancer. Valid only for load balancers in a Net. If load_balancer_type is internet-facing, the load balancer has a public DNS name that resolves to a public IP. If load_balancer_type is internal, the load balancer has a public DNS name that resolves to a private IP.
    netId String
    The ID of the Net for the load balancer.
    securityGroups List<String>
    One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
    subnets List<String>
    The ID of the Subnet in which the load balancer was created.
    tags List<Property Map>
    One or more tags associated with the load balancer.

    getLoadBalancer Result

    The following output properties are available:

    ApplicationStickyCookiePolicies List<GetLoadBalancerApplicationStickyCookiePolicy>
    The stickiness policies defined for the load balancer.
    BackendVmIds List<string>
    One or more IDs of backend VMs for the load balancer.
    DnsName string
    The DNS name of the load balancer.
    Id string
    LoadBalancerName string
    The name of the load balancer.
    LoadBalancerStickyCookiePolicies List<GetLoadBalancerLoadBalancerStickyCookiePolicy>
    The policies defined for the load balancer.
    LoadBalancerType string
    The type of load balancer. Valid only for load balancers in a Net. If load_balancer_type is internet-facing, the load balancer has a public DNS name that resolves to a public IP. If load_balancer_type is internal, the load balancer has a public DNS name that resolves to a private IP.
    NetId string
    The ID of the Net for the load balancer.
    PublicIp string
    (internet-facing only) The public IP associated with the load balancer.
    RequestId string
    SecuredCookies bool
    Whether secure cookies are enabled for the load balancer.
    SecurityGroups List<string>
    One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
    SourceSecurityGroups List<GetLoadBalancerSourceSecurityGroup>
    Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
    Subnets List<string>
    The ID of the Subnet in which the load balancer was created.
    SubregionNames List<string>
    The ID of the Subregion in which the load balancer was created.
    AccessLogs List<GetLoadBalancerAccessLog>
    Information about access logs.
    Filters List<GetLoadBalancerFilter>
    HealthChecks List<GetLoadBalancerHealthCheck>
    Information about the health check configuration.
    Listeners List<GetLoadBalancerListener>
    The listeners for the load balancer.
    Tags List<GetLoadBalancerTag>
    One or more tags associated with the load balancer.
    ApplicationStickyCookiePolicies []GetLoadBalancerApplicationStickyCookiePolicy
    The stickiness policies defined for the load balancer.
    BackendVmIds []string
    One or more IDs of backend VMs for the load balancer.
    DnsName string
    The DNS name of the load balancer.
    Id string
    LoadBalancerName string
    The name of the load balancer.
    LoadBalancerStickyCookiePolicies []GetLoadBalancerLoadBalancerStickyCookiePolicy
    The policies defined for the load balancer.
    LoadBalancerType string
    The type of load balancer. Valid only for load balancers in a Net. If load_balancer_type is internet-facing, the load balancer has a public DNS name that resolves to a public IP. If load_balancer_type is internal, the load balancer has a public DNS name that resolves to a private IP.
    NetId string
    The ID of the Net for the load balancer.
    PublicIp string
    (internet-facing only) The public IP associated with the load balancer.
    RequestId string
    SecuredCookies bool
    Whether secure cookies are enabled for the load balancer.
    SecurityGroups []string
    One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
    SourceSecurityGroups []GetLoadBalancerSourceSecurityGroup
    Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
    Subnets []string
    The ID of the Subnet in which the load balancer was created.
    SubregionNames []string
    The ID of the Subregion in which the load balancer was created.
    AccessLogs []GetLoadBalancerAccessLog
    Information about access logs.
    Filters []GetLoadBalancerFilter
    HealthChecks []GetLoadBalancerHealthCheck
    Information about the health check configuration.
    Listeners []GetLoadBalancerListener
    The listeners for the load balancer.
    Tags []GetLoadBalancerTag
    One or more tags associated with the load balancer.
    applicationStickyCookiePolicies List<GetLoadBalancerApplicationStickyCookiePolicy>
    The stickiness policies defined for the load balancer.
    backendVmIds List<String>
    One or more IDs of backend VMs for the load balancer.
    dnsName String
    The DNS name of the load balancer.
    id String
    loadBalancerName String
    The name of the load balancer.
    loadBalancerStickyCookiePolicies List<GetLoadBalancerLoadBalancerStickyCookiePolicy>
    The policies defined for the load balancer.
    loadBalancerType String
    The type of load balancer. Valid only for load balancers in a Net. If load_balancer_type is internet-facing, the load balancer has a public DNS name that resolves to a public IP. If load_balancer_type is internal, the load balancer has a public DNS name that resolves to a private IP.
    netId String
    The ID of the Net for the load balancer.
    publicIp String
    (internet-facing only) The public IP associated with the load balancer.
    requestId String
    securedCookies Boolean
    Whether secure cookies are enabled for the load balancer.
    securityGroups List<String>
    One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
    sourceSecurityGroups List<GetLoadBalancerSourceSecurityGroup>
    Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
    subnets List<String>
    The ID of the Subnet in which the load balancer was created.
    subregionNames List<String>
    The ID of the Subregion in which the load balancer was created.
    accessLogs List<GetLoadBalancerAccessLog>
    Information about access logs.
    filters List<GetLoadBalancerFilter>
    healthChecks List<GetLoadBalancerHealthCheck>
    Information about the health check configuration.
    listeners List<GetLoadBalancerListener>
    The listeners for the load balancer.
    tags List<GetLoadBalancerTag>
    One or more tags associated with the load balancer.
    applicationStickyCookiePolicies GetLoadBalancerApplicationStickyCookiePolicy[]
    The stickiness policies defined for the load balancer.
    backendVmIds string[]
    One or more IDs of backend VMs for the load balancer.
    dnsName string
    The DNS name of the load balancer.
    id string
    loadBalancerName string
    The name of the load balancer.
    loadBalancerStickyCookiePolicies GetLoadBalancerLoadBalancerStickyCookiePolicy[]
    The policies defined for the load balancer.
    loadBalancerType string
    The type of load balancer. Valid only for load balancers in a Net. If load_balancer_type is internet-facing, the load balancer has a public DNS name that resolves to a public IP. If load_balancer_type is internal, the load balancer has a public DNS name that resolves to a private IP.
    netId string
    The ID of the Net for the load balancer.
    publicIp string
    (internet-facing only) The public IP associated with the load balancer.
    requestId string
    securedCookies boolean
    Whether secure cookies are enabled for the load balancer.
    securityGroups string[]
    One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
    sourceSecurityGroups GetLoadBalancerSourceSecurityGroup[]
    Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
    subnets string[]
    The ID of the Subnet in which the load balancer was created.
    subregionNames string[]
    The ID of the Subregion in which the load balancer was created.
    accessLogs GetLoadBalancerAccessLog[]
    Information about access logs.
    filters GetLoadBalancerFilter[]
    healthChecks GetLoadBalancerHealthCheck[]
    Information about the health check configuration.
    listeners GetLoadBalancerListener[]
    The listeners for the load balancer.
    tags GetLoadBalancerTag[]
    One or more tags associated with the load balancer.
    application_sticky_cookie_policies Sequence[GetLoadBalancerApplicationStickyCookiePolicy]
    The stickiness policies defined for the load balancer.
    backend_vm_ids Sequence[str]
    One or more IDs of backend VMs for the load balancer.
    dns_name str
    The DNS name of the load balancer.
    id str
    load_balancer_name str
    The name of the load balancer.
    load_balancer_sticky_cookie_policies Sequence[GetLoadBalancerLoadBalancerStickyCookiePolicy]
    The policies defined for the load balancer.
    load_balancer_type str
    The type of load balancer. Valid only for load balancers in a Net. If load_balancer_type is internet-facing, the load balancer has a public DNS name that resolves to a public IP. If load_balancer_type is internal, the load balancer has a public DNS name that resolves to a private IP.
    net_id str
    The ID of the Net for the load balancer.
    public_ip str
    (internet-facing only) The public IP associated with the load balancer.
    request_id str
    secured_cookies bool
    Whether secure cookies are enabled for the load balancer.
    security_groups Sequence[str]
    One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
    source_security_groups Sequence[GetLoadBalancerSourceSecurityGroup]
    Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
    subnets Sequence[str]
    The ID of the Subnet in which the load balancer was created.
    subregion_names Sequence[str]
    The ID of the Subregion in which the load balancer was created.
    access_logs Sequence[GetLoadBalancerAccessLog]
    Information about access logs.
    filters Sequence[GetLoadBalancerFilter]
    health_checks Sequence[GetLoadBalancerHealthCheck]
    Information about the health check configuration.
    listeners Sequence[GetLoadBalancerListener]
    The listeners for the load balancer.
    tags Sequence[GetLoadBalancerTag]
    One or more tags associated with the load balancer.
    applicationStickyCookiePolicies List<Property Map>
    The stickiness policies defined for the load balancer.
    backendVmIds List<String>
    One or more IDs of backend VMs for the load balancer.
    dnsName String
    The DNS name of the load balancer.
    id String
    loadBalancerName String
    The name of the load balancer.
    loadBalancerStickyCookiePolicies List<Property Map>
    The policies defined for the load balancer.
    loadBalancerType String
    The type of load balancer. Valid only for load balancers in a Net. If load_balancer_type is internet-facing, the load balancer has a public DNS name that resolves to a public IP. If load_balancer_type is internal, the load balancer has a public DNS name that resolves to a private IP.
    netId String
    The ID of the Net for the load balancer.
    publicIp String
    (internet-facing only) The public IP associated with the load balancer.
    requestId String
    securedCookies Boolean
    Whether secure cookies are enabled for the load balancer.
    securityGroups List<String>
    One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
    sourceSecurityGroups List<Property Map>
    Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
    subnets List<String>
    The ID of the Subnet in which the load balancer was created.
    subregionNames List<String>
    The ID of the Subregion in which the load balancer was created.
    accessLogs List<Property Map>
    Information about access logs.
    filters List<Property Map>
    healthChecks List<Property Map>
    Information about the health check configuration.
    listeners List<Property Map>
    The listeners for the load balancer.
    tags List<Property Map>
    One or more tags associated with the load balancer.

    Supporting Types

    GetLoadBalancerAccessLog

    IsEnabled bool
    If true, access logs are enabled for your load balancer. If false, they are not. If you set this to true in your request, the osu_bucket_name parameter is required.
    OsuBucketName string
    The name of the OOS bucket for the access logs.
    OsuBucketPrefix string
    The path to the folder of the access logs in your OOS bucket (by default, the root level of your bucket).
    PublicationInterval double
    The time interval for the publication of access logs in the OOS bucket, in minutes. This value can be either 5 or 60 (by default, 60).
    IsEnabled bool
    If true, access logs are enabled for your load balancer. If false, they are not. If you set this to true in your request, the osu_bucket_name parameter is required.
    OsuBucketName string
    The name of the OOS bucket for the access logs.
    OsuBucketPrefix string
    The path to the folder of the access logs in your OOS bucket (by default, the root level of your bucket).
    PublicationInterval float64
    The time interval for the publication of access logs in the OOS bucket, in minutes. This value can be either 5 or 60 (by default, 60).
    isEnabled Boolean
    If true, access logs are enabled for your load balancer. If false, they are not. If you set this to true in your request, the osu_bucket_name parameter is required.
    osuBucketName String
    The name of the OOS bucket for the access logs.
    osuBucketPrefix String
    The path to the folder of the access logs in your OOS bucket (by default, the root level of your bucket).
    publicationInterval Double
    The time interval for the publication of access logs in the OOS bucket, in minutes. This value can be either 5 or 60 (by default, 60).
    isEnabled boolean
    If true, access logs are enabled for your load balancer. If false, they are not. If you set this to true in your request, the osu_bucket_name parameter is required.
    osuBucketName string
    The name of the OOS bucket for the access logs.
    osuBucketPrefix string
    The path to the folder of the access logs in your OOS bucket (by default, the root level of your bucket).
    publicationInterval number
    The time interval for the publication of access logs in the OOS bucket, in minutes. This value can be either 5 or 60 (by default, 60).
    is_enabled bool
    If true, access logs are enabled for your load balancer. If false, they are not. If you set this to true in your request, the osu_bucket_name parameter is required.
    osu_bucket_name str
    The name of the OOS bucket for the access logs.
    osu_bucket_prefix str
    The path to the folder of the access logs in your OOS bucket (by default, the root level of your bucket).
    publication_interval float
    The time interval for the publication of access logs in the OOS bucket, in minutes. This value can be either 5 or 60 (by default, 60).
    isEnabled Boolean
    If true, access logs are enabled for your load balancer. If false, they are not. If you set this to true in your request, the osu_bucket_name parameter is required.
    osuBucketName String
    The name of the OOS bucket for the access logs.
    osuBucketPrefix String
    The path to the folder of the access logs in your OOS bucket (by default, the root level of your bucket).
    publicationInterval Number
    The time interval for the publication of access logs in the OOS bucket, in minutes. This value can be either 5 or 60 (by default, 60).

    GetLoadBalancerApplicationStickyCookiePolicy

    CookieName string
    The name of the application cookie used for stickiness.
    PolicyName string
    The name of the stickiness policy.
    CookieName string
    The name of the application cookie used for stickiness.
    PolicyName string
    The name of the stickiness policy.
    cookieName String
    The name of the application cookie used for stickiness.
    policyName String
    The name of the stickiness policy.
    cookieName string
    The name of the application cookie used for stickiness.
    policyName string
    The name of the stickiness policy.
    cookie_name str
    The name of the application cookie used for stickiness.
    policy_name str
    The name of the stickiness policy.
    cookieName String
    The name of the application cookie used for stickiness.
    policyName String
    The name of the stickiness policy.

    GetLoadBalancerFilter

    Name string
    Values List<string>
    Name string
    Values []string
    name String
    values List<String>
    name string
    values string[]
    name str
    values Sequence[str]
    name String
    values List<String>

    GetLoadBalancerHealthCheck

    CheckInterval double
    The number of seconds between two requests (between 5 and 600 both included).
    HealthyThreshold double
    The number of consecutive successful requests before considering the VM as healthy (between 2 and 10 both included).
    Path string
    If you use the HTTP or HTTPS protocols, the request URL path.
    Port double
    The port number (between 1 and 65535, both included).
    Protocol string
    The protocol for the URL of the VM (HTTP | HTTPS | TCP | SSL).
    Timeout double
    The maximum waiting time for a response before considering the VM as unhealthy, in seconds (between 2 and 60 both included).
    UnhealthyThreshold double
    The number of consecutive failed requests before considering the VM as unhealthy (between 2 and 10 both included).
    CheckInterval float64
    The number of seconds between two requests (between 5 and 600 both included).
    HealthyThreshold float64
    The number of consecutive successful requests before considering the VM as healthy (between 2 and 10 both included).
    Path string
    If you use the HTTP or HTTPS protocols, the request URL path.
    Port float64
    The port number (between 1 and 65535, both included).
    Protocol string
    The protocol for the URL of the VM (HTTP | HTTPS | TCP | SSL).
    Timeout float64
    The maximum waiting time for a response before considering the VM as unhealthy, in seconds (between 2 and 60 both included).
    UnhealthyThreshold float64
    The number of consecutive failed requests before considering the VM as unhealthy (between 2 and 10 both included).
    checkInterval Double
    The number of seconds between two requests (between 5 and 600 both included).
    healthyThreshold Double
    The number of consecutive successful requests before considering the VM as healthy (between 2 and 10 both included).
    path String
    If you use the HTTP or HTTPS protocols, the request URL path.
    port Double
    The port number (between 1 and 65535, both included).
    protocol String
    The protocol for the URL of the VM (HTTP | HTTPS | TCP | SSL).
    timeout Double
    The maximum waiting time for a response before considering the VM as unhealthy, in seconds (between 2 and 60 both included).
    unhealthyThreshold Double
    The number of consecutive failed requests before considering the VM as unhealthy (between 2 and 10 both included).
    checkInterval number
    The number of seconds between two requests (between 5 and 600 both included).
    healthyThreshold number
    The number of consecutive successful requests before considering the VM as healthy (between 2 and 10 both included).
    path string
    If you use the HTTP or HTTPS protocols, the request URL path.
    port number
    The port number (between 1 and 65535, both included).
    protocol string
    The protocol for the URL of the VM (HTTP | HTTPS | TCP | SSL).
    timeout number
    The maximum waiting time for a response before considering the VM as unhealthy, in seconds (between 2 and 60 both included).
    unhealthyThreshold number
    The number of consecutive failed requests before considering the VM as unhealthy (between 2 and 10 both included).
    check_interval float
    The number of seconds between two requests (between 5 and 600 both included).
    healthy_threshold float
    The number of consecutive successful requests before considering the VM as healthy (between 2 and 10 both included).
    path str
    If you use the HTTP or HTTPS protocols, the request URL path.
    port float
    The port number (between 1 and 65535, both included).
    protocol str
    The protocol for the URL of the VM (HTTP | HTTPS | TCP | SSL).
    timeout float
    The maximum waiting time for a response before considering the VM as unhealthy, in seconds (between 2 and 60 both included).
    unhealthy_threshold float
    The number of consecutive failed requests before considering the VM as unhealthy (between 2 and 10 both included).
    checkInterval Number
    The number of seconds between two requests (between 5 and 600 both included).
    healthyThreshold Number
    The number of consecutive successful requests before considering the VM as healthy (between 2 and 10 both included).
    path String
    If you use the HTTP or HTTPS protocols, the request URL path.
    port Number
    The port number (between 1 and 65535, both included).
    protocol String
    The protocol for the URL of the VM (HTTP | HTTPS | TCP | SSL).
    timeout Number
    The maximum waiting time for a response before considering the VM as unhealthy, in seconds (between 2 and 60 both included).
    unhealthyThreshold Number
    The number of consecutive failed requests before considering the VM as unhealthy (between 2 and 10 both included).

    GetLoadBalancerListener

    BackendPort double
    The port on which the backend VM is listening (between 1 and 65535, both included).
    BackendProtocol string
    The protocol for routing traffic to backend VMs (HTTP | HTTPS | TCP | SSL).
    LoadBalancerPort double
    The port on which the load balancer is listening (between 1 and 65535, both included).
    LoadBalancerProtocol string
    The routing protocol (HTTP | HTTPS | TCP | SSL).
    PolicyNames List<string>
    The names of the policies. If there are no policies enabled, the list is empty.
    ServerCertificateId string
    The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
    BackendPort float64
    The port on which the backend VM is listening (between 1 and 65535, both included).
    BackendProtocol string
    The protocol for routing traffic to backend VMs (HTTP | HTTPS | TCP | SSL).
    LoadBalancerPort float64
    The port on which the load balancer is listening (between 1 and 65535, both included).
    LoadBalancerProtocol string
    The routing protocol (HTTP | HTTPS | TCP | SSL).
    PolicyNames []string
    The names of the policies. If there are no policies enabled, the list is empty.
    ServerCertificateId string
    The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
    backendPort Double
    The port on which the backend VM is listening (between 1 and 65535, both included).
    backendProtocol String
    The protocol for routing traffic to backend VMs (HTTP | HTTPS | TCP | SSL).
    loadBalancerPort Double
    The port on which the load balancer is listening (between 1 and 65535, both included).
    loadBalancerProtocol String
    The routing protocol (HTTP | HTTPS | TCP | SSL).
    policyNames List<String>
    The names of the policies. If there are no policies enabled, the list is empty.
    serverCertificateId String
    The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
    backendPort number
    The port on which the backend VM is listening (between 1 and 65535, both included).
    backendProtocol string
    The protocol for routing traffic to backend VMs (HTTP | HTTPS | TCP | SSL).
    loadBalancerPort number
    The port on which the load balancer is listening (between 1 and 65535, both included).
    loadBalancerProtocol string
    The routing protocol (HTTP | HTTPS | TCP | SSL).
    policyNames string[]
    The names of the policies. If there are no policies enabled, the list is empty.
    serverCertificateId string
    The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
    backend_port float
    The port on which the backend VM is listening (between 1 and 65535, both included).
    backend_protocol str
    The protocol for routing traffic to backend VMs (HTTP | HTTPS | TCP | SSL).
    load_balancer_port float
    The port on which the load balancer is listening (between 1 and 65535, both included).
    load_balancer_protocol str
    The routing protocol (HTTP | HTTPS | TCP | SSL).
    policy_names Sequence[str]
    The names of the policies. If there are no policies enabled, the list is empty.
    server_certificate_id str
    The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
    backendPort Number
    The port on which the backend VM is listening (between 1 and 65535, both included).
    backendProtocol String
    The protocol for routing traffic to backend VMs (HTTP | HTTPS | TCP | SSL).
    loadBalancerPort Number
    The port on which the load balancer is listening (between 1 and 65535, both included).
    loadBalancerProtocol String
    The routing protocol (HTTP | HTTPS | TCP | SSL).
    policyNames List<String>
    The names of the policies. If there are no policies enabled, the list is empty.
    serverCertificateId String
    The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).

    GetLoadBalancerLoadBalancerStickyCookiePolicy

    PolicyName string
    The name of the stickiness policy.
    PolicyName string
    The name of the stickiness policy.
    policyName String
    The name of the stickiness policy.
    policyName string
    The name of the stickiness policy.
    policy_name str
    The name of the stickiness policy.
    policyName String
    The name of the stickiness policy.

    GetLoadBalancerSourceSecurityGroup

    SecurityGroupAccountId string
    The account ID of the owner of the security group.
    SecurityGroupName string
    The name of the security group.
    SecurityGroupAccountId string
    The account ID of the owner of the security group.
    SecurityGroupName string
    The name of the security group.
    securityGroupAccountId String
    The account ID of the owner of the security group.
    securityGroupName String
    The name of the security group.
    securityGroupAccountId string
    The account ID of the owner of the security group.
    securityGroupName string
    The name of the security group.
    security_group_account_id str
    The account ID of the owner of the security group.
    security_group_name str
    The name of the security group.
    securityGroupAccountId String
    The account ID of the owner of the security group.
    securityGroupName String
    The name of the security group.

    GetLoadBalancerTag

    Key string
    The key of the tag, with a minimum of 1 character.
    Value string
    The value of the tag, between 0 and 255 characters.
    Key string
    The key of the tag, with a minimum of 1 character.
    Value string
    The value of the tag, between 0 and 255 characters.
    key String
    The key of the tag, with a minimum of 1 character.
    value String
    The value of the tag, between 0 and 255 characters.
    key string
    The key of the tag, with a minimum of 1 character.
    value string
    The value of the tag, between 0 and 255 characters.
    key str
    The key of the tag, with a minimum of 1 character.
    value str
    The value of the tag, between 0 and 255 characters.
    key String
    The key of the tag, with a minimum of 1 character.
    value String
    The value of the tag, between 0 and 255 characters.

    Package Details

    Repository
    outscale outscale/terraform-provider-outscale
    License
    Notes
    This Pulumi package is based on the outscale Terraform Provider.
    outscale logo
    outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale