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

outscale.getPublicIp

Explore with Pulumi AI

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

    Provides information about a public IP.

    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 publicIp01 = outscale.getPublicIp({
        filters: [{
            name: "public_ips",
            values: ["111.11.111.1"],
        }],
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    public_ip01 = outscale.get_public_ip(filters=[{
        "name": "public_ips",
        "values": ["111.11.111.1"],
    }])
    
    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.LookupPublicIp(ctx, &outscale.LookupPublicIpArgs{
    			Filters: []outscale.GetPublicIpFilter{
    				{
    					Name: "public_ips",
    					Values: []string{
    						"111.11.111.1",
    					},
    				},
    			},
    		}, 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 publicIp01 = Outscale.GetPublicIp.Invoke(new()
        {
            Filters = new[]
            {
                new Outscale.Inputs.GetPublicIpFilterInputArgs
                {
                    Name = "public_ips",
                    Values = new[]
                    {
                        "111.11.111.1",
                    },
                },
            },
        });
    
    });
    
    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.GetPublicIpArgs;
    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 publicIp01 = OutscaleFunctions.getPublicIp(GetPublicIpArgs.builder()
                .filters(GetPublicIpFilterArgs.builder()
                    .name("public_ips")
                    .values("111.11.111.1")
                    .build())
                .build());
    
        }
    }
    
    variables:
      publicIp01:
        fn::invoke:
          function: outscale:getPublicIp
          arguments:
            filters:
              - name: public_ips
                values:
                  - 111.11.111.1
    

    Using getPublicIp

    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 getPublicIp(args: GetPublicIpArgs, opts?: InvokeOptions): Promise<GetPublicIpResult>
    function getPublicIpOutput(args: GetPublicIpOutputArgs, opts?: InvokeOptions): Output<GetPublicIpResult>
    def get_public_ip(filters: Optional[Sequence[GetPublicIpFilter]] = None,
                      id: Optional[str] = None,
                      public_ip: Optional[str] = None,
                      public_ip_id: Optional[str] = None,
                      opts: Optional[InvokeOptions] = None) -> GetPublicIpResult
    def get_public_ip_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetPublicIpFilterArgs]]]] = None,
                      id: Optional[pulumi.Input[str]] = None,
                      public_ip: Optional[pulumi.Input[str]] = None,
                      public_ip_id: Optional[pulumi.Input[str]] = None,
                      opts: Optional[InvokeOptions] = None) -> Output[GetPublicIpResult]
    func LookupPublicIp(ctx *Context, args *LookupPublicIpArgs, opts ...InvokeOption) (*LookupPublicIpResult, error)
    func LookupPublicIpOutput(ctx *Context, args *LookupPublicIpOutputArgs, opts ...InvokeOption) LookupPublicIpResultOutput

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

    public static class GetPublicIp 
    {
        public static Task<GetPublicIpResult> InvokeAsync(GetPublicIpArgs args, InvokeOptions? opts = null)
        public static Output<GetPublicIpResult> Invoke(GetPublicIpInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPublicIpResult> getPublicIp(GetPublicIpArgs args, InvokeOptions options)
    public static Output<GetPublicIpResult> getPublicIp(GetPublicIpArgs args, InvokeOptions options)
    
    fn::invoke:
      function: outscale:index/getPublicIp:getPublicIp
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Filters List<GetPublicIpFilter>
    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:
    Id string
    PublicIp string
    The public IP.
    PublicIpId string
    The allocation ID of the public IP.
    Filters []GetPublicIpFilter
    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:
    Id string
    PublicIp string
    The public IP.
    PublicIpId string
    The allocation ID of the public IP.
    filters List<GetPublicIpFilter>
    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:
    id String
    publicIp String
    The public IP.
    publicIpId String
    The allocation ID of the public IP.
    filters GetPublicIpFilter[]
    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:
    id string
    publicIp string
    The public IP.
    publicIpId string
    The allocation ID of the public IP.
    filters Sequence[GetPublicIpFilter]
    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:
    id str
    public_ip str
    The public IP.
    public_ip_id str
    The allocation ID of the public IP.
    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:
    id String
    publicIp String
    The public IP.
    publicIpId String
    The allocation ID of the public IP.

    getPublicIp Result

    The following output properties are available:

    Id string
    LinkPublicIpId string
    (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
    NicAccountId string
    The account ID of the owner of the NIC.
    NicId string
    The ID of the NIC the public IP is associated with (if any).
    PrivateIp string
    The private IP associated with the public IP.
    PublicIp string
    The public IP.
    PublicIpId string
    The allocation ID of the public IP.
    RequestId string
    Tags List<GetPublicIpTag>
    One or more tags associated with the public IP.
    VmId string
    The ID of the VM the public IP is associated with (if any).
    Filters List<GetPublicIpFilter>
    Id string
    LinkPublicIpId string
    (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
    NicAccountId string
    The account ID of the owner of the NIC.
    NicId string
    The ID of the NIC the public IP is associated with (if any).
    PrivateIp string
    The private IP associated with the public IP.
    PublicIp string
    The public IP.
    PublicIpId string
    The allocation ID of the public IP.
    RequestId string
    Tags []GetPublicIpTag
    One or more tags associated with the public IP.
    VmId string
    The ID of the VM the public IP is associated with (if any).
    Filters []GetPublicIpFilter
    id String
    linkPublicIpId String
    (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
    nicAccountId String
    The account ID of the owner of the NIC.
    nicId String
    The ID of the NIC the public IP is associated with (if any).
    privateIp String
    The private IP associated with the public IP.
    publicIp String
    The public IP.
    publicIpId String
    The allocation ID of the public IP.
    requestId String
    tags List<GetPublicIpTag>
    One or more tags associated with the public IP.
    vmId String
    The ID of the VM the public IP is associated with (if any).
    filters List<GetPublicIpFilter>
    id string
    linkPublicIpId string
    (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
    nicAccountId string
    The account ID of the owner of the NIC.
    nicId string
    The ID of the NIC the public IP is associated with (if any).
    privateIp string
    The private IP associated with the public IP.
    publicIp string
    The public IP.
    publicIpId string
    The allocation ID of the public IP.
    requestId string
    tags GetPublicIpTag[]
    One or more tags associated with the public IP.
    vmId string
    The ID of the VM the public IP is associated with (if any).
    filters GetPublicIpFilter[]
    id str
    link_public_ip_id str
    (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
    nic_account_id str
    The account ID of the owner of the NIC.
    nic_id str
    The ID of the NIC the public IP is associated with (if any).
    private_ip str
    The private IP associated with the public IP.
    public_ip str
    The public IP.
    public_ip_id str
    The allocation ID of the public IP.
    request_id str
    tags Sequence[GetPublicIpTag]
    One or more tags associated with the public IP.
    vm_id str
    The ID of the VM the public IP is associated with (if any).
    filters Sequence[GetPublicIpFilter]
    id String
    linkPublicIpId String
    (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
    nicAccountId String
    The account ID of the owner of the NIC.
    nicId String
    The ID of the NIC the public IP is associated with (if any).
    privateIp String
    The private IP associated with the public IP.
    publicIp String
    The public IP.
    publicIpId String
    The allocation ID of the public IP.
    requestId String
    tags List<Property Map>
    One or more tags associated with the public IP.
    vmId String
    The ID of the VM the public IP is associated with (if any).
    filters List<Property Map>

    Supporting Types

    GetPublicIpFilter

    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>

    GetPublicIpTag

    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