1. Packages
  2. Scaleway
  3. API Docs
  4. LoadbalancerIp
Scaleway v1.12.1 published on Monday, Apr 15, 2024 by pulumiverse

scaleway.LoadbalancerIp

Explore with Pulumi AI

scaleway logo
Scaleway v1.12.1 published on Monday, Apr 15, 2024 by pulumiverse

    Creates and manages Scaleway Load-Balancers IPs. For more information, see the documentation.

    Example Usage

    Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const ip = new scaleway.LoadbalancerIp("ip", {reverse: "my-reverse.com"});
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    ip = scaleway.LoadbalancerIp("ip", reverse="my-reverse.com")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := scaleway.NewLoadbalancerIp(ctx, "ip", &scaleway.LoadbalancerIpArgs{
    			Reverse: pulumi.String("my-reverse.com"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumiverse.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        var ip = new Scaleway.LoadbalancerIp("ip", new()
        {
            Reverse = "my-reverse.com",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.LoadbalancerIp;
    import com.pulumi.scaleway.LoadbalancerIpArgs;
    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) {
            var ip = new LoadbalancerIp("ip", LoadbalancerIpArgs.builder()        
                .reverse("my-reverse.com")
                .build());
    
        }
    }
    
    resources:
      ip:
        type: scaleway:LoadbalancerIp
        properties:
          reverse: my-reverse.com
    

    Create LoadbalancerIp Resource

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

    Constructor syntax

    new LoadbalancerIp(name: string, args?: LoadbalancerIpArgs, opts?: CustomResourceOptions);
    @overload
    def LoadbalancerIp(resource_name: str,
                       args: Optional[LoadbalancerIpArgs] = None,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def LoadbalancerIp(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       project_id: Optional[str] = None,
                       reverse: Optional[str] = None,
                       zone: Optional[str] = None)
    func NewLoadbalancerIp(ctx *Context, name string, args *LoadbalancerIpArgs, opts ...ResourceOption) (*LoadbalancerIp, error)
    public LoadbalancerIp(string name, LoadbalancerIpArgs? args = null, CustomResourceOptions? opts = null)
    public LoadbalancerIp(String name, LoadbalancerIpArgs args)
    public LoadbalancerIp(String name, LoadbalancerIpArgs args, CustomResourceOptions options)
    
    type: scaleway:LoadbalancerIp
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args LoadbalancerIpArgs
    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 LoadbalancerIpArgs
    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 LoadbalancerIpArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LoadbalancerIpArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LoadbalancerIpArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var loadbalancerIpResource = new Scaleway.LoadbalancerIp("loadbalancerIpResource", new()
    {
        ProjectId = "string",
        Reverse = "string",
        Zone = "string",
    });
    
    example, err := scaleway.NewLoadbalancerIp(ctx, "loadbalancerIpResource", &scaleway.LoadbalancerIpArgs{
    	ProjectId: pulumi.String("string"),
    	Reverse:   pulumi.String("string"),
    	Zone:      pulumi.String("string"),
    })
    
    var loadbalancerIpResource = new LoadbalancerIp("loadbalancerIpResource", LoadbalancerIpArgs.builder()        
        .projectId("string")
        .reverse("string")
        .zone("string")
        .build());
    
    loadbalancer_ip_resource = scaleway.LoadbalancerIp("loadbalancerIpResource",
        project_id="string",
        reverse="string",
        zone="string")
    
    const loadbalancerIpResource = new scaleway.LoadbalancerIp("loadbalancerIpResource", {
        projectId: "string",
        reverse: "string",
        zone: "string",
    });
    
    type: scaleway:LoadbalancerIp
    properties:
        projectId: string
        reverse: string
        zone: string
    

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

    ProjectId string
    project_id) The ID of the project the IP is associated with.
    Reverse string
    The reverse domain associated with this IP.
    Zone string
    zone) The zone in which the IP should be reserved.
    ProjectId string
    project_id) The ID of the project the IP is associated with.
    Reverse string
    The reverse domain associated with this IP.
    Zone string
    zone) The zone in which the IP should be reserved.
    projectId String
    project_id) The ID of the project the IP is associated with.
    reverse String
    The reverse domain associated with this IP.
    zone String
    zone) The zone in which the IP should be reserved.
    projectId string
    project_id) The ID of the project the IP is associated with.
    reverse string
    The reverse domain associated with this IP.
    zone string
    zone) The zone in which the IP should be reserved.
    project_id str
    project_id) The ID of the project the IP is associated with.
    reverse str
    The reverse domain associated with this IP.
    zone str
    zone) The zone in which the IP should be reserved.
    projectId String
    project_id) The ID of the project the IP is associated with.
    reverse String
    The reverse domain associated with this IP.
    zone String
    zone) The zone in which the IP should be reserved.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    IpAddress string
    The IP Address
    LbId string
    The associated load-balance ID if any
    OrganizationId string
    The organization_id you want to attach the resource to
    Region string
    The region of the resource
    Id string
    The provider-assigned unique ID for this managed resource.
    IpAddress string
    The IP Address
    LbId string
    The associated load-balance ID if any
    OrganizationId string
    The organization_id you want to attach the resource to
    Region string
    The region of the resource
    id String
    The provider-assigned unique ID for this managed resource.
    ipAddress String
    The IP Address
    lbId String
    The associated load-balance ID if any
    organizationId String
    The organization_id you want to attach the resource to
    region String
    The region of the resource
    id string
    The provider-assigned unique ID for this managed resource.
    ipAddress string
    The IP Address
    lbId string
    The associated load-balance ID if any
    organizationId string
    The organization_id you want to attach the resource to
    region string
    The region of the resource
    id str
    The provider-assigned unique ID for this managed resource.
    ip_address str
    The IP Address
    lb_id str
    The associated load-balance ID if any
    organization_id str
    The organization_id you want to attach the resource to
    region str
    The region of the resource
    id String
    The provider-assigned unique ID for this managed resource.
    ipAddress String
    The IP Address
    lbId String
    The associated load-balance ID if any
    organizationId String
    The organization_id you want to attach the resource to
    region String
    The region of the resource

    Look up Existing LoadbalancerIp Resource

    Get an existing LoadbalancerIp 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?: LoadbalancerIpState, opts?: CustomResourceOptions): LoadbalancerIp
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ip_address: Optional[str] = None,
            lb_id: Optional[str] = None,
            organization_id: Optional[str] = None,
            project_id: Optional[str] = None,
            region: Optional[str] = None,
            reverse: Optional[str] = None,
            zone: Optional[str] = None) -> LoadbalancerIp
    func GetLoadbalancerIp(ctx *Context, name string, id IDInput, state *LoadbalancerIpState, opts ...ResourceOption) (*LoadbalancerIp, error)
    public static LoadbalancerIp Get(string name, Input<string> id, LoadbalancerIpState? state, CustomResourceOptions? opts = null)
    public static LoadbalancerIp get(String name, Output<String> id, LoadbalancerIpState 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:
    IpAddress string
    The IP Address
    LbId string
    The associated load-balance ID if any
    OrganizationId string
    The organization_id you want to attach the resource to
    ProjectId string
    project_id) The ID of the project the IP is associated with.
    Region string
    The region of the resource
    Reverse string
    The reverse domain associated with this IP.
    Zone string
    zone) The zone in which the IP should be reserved.
    IpAddress string
    The IP Address
    LbId string
    The associated load-balance ID if any
    OrganizationId string
    The organization_id you want to attach the resource to
    ProjectId string
    project_id) The ID of the project the IP is associated with.
    Region string
    The region of the resource
    Reverse string
    The reverse domain associated with this IP.
    Zone string
    zone) The zone in which the IP should be reserved.
    ipAddress String
    The IP Address
    lbId String
    The associated load-balance ID if any
    organizationId String
    The organization_id you want to attach the resource to
    projectId String
    project_id) The ID of the project the IP is associated with.
    region String
    The region of the resource
    reverse String
    The reverse domain associated with this IP.
    zone String
    zone) The zone in which the IP should be reserved.
    ipAddress string
    The IP Address
    lbId string
    The associated load-balance ID if any
    organizationId string
    The organization_id you want to attach the resource to
    projectId string
    project_id) The ID of the project the IP is associated with.
    region string
    The region of the resource
    reverse string
    The reverse domain associated with this IP.
    zone string
    zone) The zone in which the IP should be reserved.
    ip_address str
    The IP Address
    lb_id str
    The associated load-balance ID if any
    organization_id str
    The organization_id you want to attach the resource to
    project_id str
    project_id) The ID of the project the IP is associated with.
    region str
    The region of the resource
    reverse str
    The reverse domain associated with this IP.
    zone str
    zone) The zone in which the IP should be reserved.
    ipAddress String
    The IP Address
    lbId String
    The associated load-balance ID if any
    organizationId String
    The organization_id you want to attach the resource to
    projectId String
    project_id) The ID of the project the IP is associated with.
    region String
    The region of the resource
    reverse String
    The reverse domain associated with this IP.
    zone String
    zone) The zone in which the IP should be reserved.

    Import

    IPs can be imported using the {zone}/{id}, e.g.

    bash

    $ pulumi import scaleway:index/loadbalancerIp:LoadbalancerIp ip01 fr-par-1/11111111-1111-1111-1111-111111111111
    

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

    Package Details

    Repository
    scaleway pulumiverse/pulumi-scaleway
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scaleway Terraform Provider.
    scaleway logo
    Scaleway v1.12.1 published on Monday, Apr 15, 2024 by pulumiverse