1. Packages
  2. Linode Provider
  3. API Docs
  4. getNetworkingIps
Linode v4.36.0 published on Thursday, Mar 27, 2025 by Pulumi

linode.getNetworkingIps

Explore with Pulumi AI

linode logo
Linode v4.36.0 published on Thursday, Mar 27, 2025 by Pulumi

    Provides information about all IP addresses associated with the current Linode account, including both assigned and unassigned reserved IP addresses.

    Example Usage

    Retrieve all IPs under the current account:

    import * as pulumi from "@pulumi/pulumi";
    import * as linode from "@pulumi/linode";
    
    const all = linode.getNetworkingIps({});
    
    import pulumi
    import pulumi_linode as linode
    
    all = linode.get_networking_ips()
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-linode/sdk/v4/go/linode"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := linode.GetNetworkingIps(ctx, &linode.GetNetworkingIpsArgs{}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Linode = Pulumi.Linode;
    
    return await Deployment.RunAsync(() => 
    {
        var all = Linode.GetNetworkingIps.Invoke();
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.linode.LinodeFunctions;
    import com.pulumi.linode.inputs.GetNetworkingIpsArgs;
    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 all = LinodeFunctions.getNetworkingIps();
    
        }
    }
    
    variables:
      all:
        fn::invoke:
          function: linode:getNetworkingIps
          arguments: {}
    

    Retrieve all IPs under the current account in a specific region:

    import * as pulumi from "@pulumi/pulumi";
    import * as linode from "@pulumi/linode";
    
    const filtered = linode.getNetworkingIps({
        filters: [{
            name: "region",
            values: ["us-mia"],
        }],
    });
    
    import pulumi
    import pulumi_linode as linode
    
    filtered = linode.get_networking_ips(filters=[{
        "name": "region",
        "values": ["us-mia"],
    }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-linode/sdk/v4/go/linode"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := linode.GetNetworkingIps(ctx, &linode.GetNetworkingIpsArgs{
    			Filters: []linode.GetNetworkingIpsFilter{
    				{
    					Name: "region",
    					Values: []string{
    						"us-mia",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Linode = Pulumi.Linode;
    
    return await Deployment.RunAsync(() => 
    {
        var filtered = Linode.GetNetworkingIps.Invoke(new()
        {
            Filters = new[]
            {
                new Linode.Inputs.GetNetworkingIpsFilterInputArgs
                {
                    Name = "region",
                    Values = new[]
                    {
                        "us-mia",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.linode.LinodeFunctions;
    import com.pulumi.linode.inputs.GetNetworkingIpsArgs;
    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 filtered = LinodeFunctions.getNetworkingIps(GetNetworkingIpsArgs.builder()
                .filters(GetNetworkingIpsFilterArgs.builder()
                    .name("region")
                    .values("us-mia")
                    .build())
                .build());
    
        }
    }
    
    variables:
      filtered:
        fn::invoke:
          function: linode:getNetworkingIps
          arguments:
            filters:
              - name: region
                values:
                  - us-mia
    

    Filterable Fields

    • address

    • gateway

    • subnet_mask

    • prefix

    • type

    • public

    • rdns

    • linode_id

    • region

    • reserved

    Using getNetworkingIps

    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 getNetworkingIps(args: GetNetworkingIpsArgs, opts?: InvokeOptions): Promise<GetNetworkingIpsResult>
    function getNetworkingIpsOutput(args: GetNetworkingIpsOutputArgs, opts?: InvokeOptions): Output<GetNetworkingIpsResult>
    def get_networking_ips(filters: Optional[Sequence[GetNetworkingIpsFilter]] = None,
                           ip_addresses: Optional[Sequence[GetNetworkingIpsIpAddress]] = None,
                           order: Optional[str] = None,
                           order_by: Optional[str] = None,
                           opts: Optional[InvokeOptions] = None) -> GetNetworkingIpsResult
    def get_networking_ips_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetNetworkingIpsFilterArgs]]]] = None,
                           ip_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[GetNetworkingIpsIpAddressArgs]]]] = None,
                           order: Optional[pulumi.Input[str]] = None,
                           order_by: Optional[pulumi.Input[str]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetNetworkingIpsResult]
    func GetNetworkingIps(ctx *Context, args *GetNetworkingIpsArgs, opts ...InvokeOption) (*GetNetworkingIpsResult, error)
    func GetNetworkingIpsOutput(ctx *Context, args *GetNetworkingIpsOutputArgs, opts ...InvokeOption) GetNetworkingIpsResultOutput

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

    public static class GetNetworkingIps 
    {
        public static Task<GetNetworkingIpsResult> InvokeAsync(GetNetworkingIpsArgs args, InvokeOptions? opts = null)
        public static Output<GetNetworkingIpsResult> Invoke(GetNetworkingIpsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetNetworkingIpsResult> getNetworkingIps(GetNetworkingIpsArgs args, InvokeOptions options)
    public static Output<GetNetworkingIpsResult> getNetworkingIps(GetNetworkingIpsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: linode:index/getNetworkingIps:getNetworkingIps
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Filters List<GetNetworkingIpsFilter>
    IpAddresses List<GetNetworkingIpsIpAddress>
    Order string
    The order in which results should be returned. (asc, desc; default asc)
    OrderBy string
    The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
    Filters []GetNetworkingIpsFilter
    IpAddresses []GetNetworkingIpsIpAddress
    Order string
    The order in which results should be returned. (asc, desc; default asc)
    OrderBy string
    The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
    filters List<GetNetworkingIpsFilter>
    ipAddresses List<GetNetworkingIpsIpAddress>
    order String
    The order in which results should be returned. (asc, desc; default asc)
    orderBy String
    The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
    filters GetNetworkingIpsFilter[]
    ipAddresses GetNetworkingIpsIpAddress[]
    order string
    The order in which results should be returned. (asc, desc; default asc)
    orderBy string
    The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
    filters Sequence[GetNetworkingIpsFilter]
    ip_addresses Sequence[GetNetworkingIpsIpAddress]
    order str
    The order in which results should be returned. (asc, desc; default asc)
    order_by str
    The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
    filters List<Property Map>
    ipAddresses List<Property Map>
    order String
    The order in which results should be returned. (asc, desc; default asc)
    orderBy String
    The attribute to order the results by. See the Filterable Fields section for a list of valid fields.

    getNetworkingIps Result

    The following output properties are available:

    Supporting Types

    GetNetworkingIpsFilter

    Name string
    The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
    Values List<string>
    A list of values for the filter to allow. These values should all be in string form.
    MatchBy string
    The method to match the field by. (exact, regex, substring; default exact)
    Name string
    The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
    Values []string
    A list of values for the filter to allow. These values should all be in string form.
    MatchBy string
    The method to match the field by. (exact, regex, substring; default exact)
    name String
    The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
    values List<String>
    A list of values for the filter to allow. These values should all be in string form.
    matchBy String
    The method to match the field by. (exact, regex, substring; default exact)
    name string
    The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
    values string[]
    A list of values for the filter to allow. These values should all be in string form.
    matchBy string
    The method to match the field by. (exact, regex, substring; default exact)
    name str
    The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
    values Sequence[str]
    A list of values for the filter to allow. These values should all be in string form.
    match_by str
    The method to match the field by. (exact, regex, substring; default exact)
    name String
    The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
    values List<String>
    A list of values for the filter to allow. These values should all be in string form.
    matchBy String
    The method to match the field by. (exact, regex, substring; default exact)

    GetNetworkingIpsIpAddress

    Address string
    The IP address.
    Gateway string
    The default gateway for this address.
    LinodeId int
    The ID of the Linode this address currently belongs to.
    Prefix int
    The number of bits set in the subnet mask.
    Public bool
    Whether this is a public or private IP address.
    Rdns string
    The reverse DNS assigned to this address. For public IPv4 addresses, this will be set to a default value provided by Linode if not explicitly set.
    Region string
    The Region this IP address resides in. See all regions here.
    Reserved bool
    Whether this IP address is a reserved IP.
    SubnetMask string
    The mask that separates host bits from network bits for this address.
    Type string
    The type of address this is (ipv4, ipv6, ipv6/pool, ipv6/range).
    Address string
    The IP address.
    Gateway string
    The default gateway for this address.
    LinodeId int
    The ID of the Linode this address currently belongs to.
    Prefix int
    The number of bits set in the subnet mask.
    Public bool
    Whether this is a public or private IP address.
    Rdns string
    The reverse DNS assigned to this address. For public IPv4 addresses, this will be set to a default value provided by Linode if not explicitly set.
    Region string
    The Region this IP address resides in. See all regions here.
    Reserved bool
    Whether this IP address is a reserved IP.
    SubnetMask string
    The mask that separates host bits from network bits for this address.
    Type string
    The type of address this is (ipv4, ipv6, ipv6/pool, ipv6/range).
    address String
    The IP address.
    gateway String
    The default gateway for this address.
    linodeId Integer
    The ID of the Linode this address currently belongs to.
    prefix Integer
    The number of bits set in the subnet mask.
    public_ Boolean
    Whether this is a public or private IP address.
    rdns String
    The reverse DNS assigned to this address. For public IPv4 addresses, this will be set to a default value provided by Linode if not explicitly set.
    region String
    The Region this IP address resides in. See all regions here.
    reserved Boolean
    Whether this IP address is a reserved IP.
    subnetMask String
    The mask that separates host bits from network bits for this address.
    type String
    The type of address this is (ipv4, ipv6, ipv6/pool, ipv6/range).
    address string
    The IP address.
    gateway string
    The default gateway for this address.
    linodeId number
    The ID of the Linode this address currently belongs to.
    prefix number
    The number of bits set in the subnet mask.
    public boolean
    Whether this is a public or private IP address.
    rdns string
    The reverse DNS assigned to this address. For public IPv4 addresses, this will be set to a default value provided by Linode if not explicitly set.
    region string
    The Region this IP address resides in. See all regions here.
    reserved boolean
    Whether this IP address is a reserved IP.
    subnetMask string
    The mask that separates host bits from network bits for this address.
    type string
    The type of address this is (ipv4, ipv6, ipv6/pool, ipv6/range).
    address str
    The IP address.
    gateway str
    The default gateway for this address.
    linode_id int
    The ID of the Linode this address currently belongs to.
    prefix int
    The number of bits set in the subnet mask.
    public bool
    Whether this is a public or private IP address.
    rdns str
    The reverse DNS assigned to this address. For public IPv4 addresses, this will be set to a default value provided by Linode if not explicitly set.
    region str
    The Region this IP address resides in. See all regions here.
    reserved bool
    Whether this IP address is a reserved IP.
    subnet_mask str
    The mask that separates host bits from network bits for this address.
    type str
    The type of address this is (ipv4, ipv6, ipv6/pool, ipv6/range).
    address String
    The IP address.
    gateway String
    The default gateway for this address.
    linodeId Number
    The ID of the Linode this address currently belongs to.
    prefix Number
    The number of bits set in the subnet mask.
    public Boolean
    Whether this is a public or private IP address.
    rdns String
    The reverse DNS assigned to this address. For public IPv4 addresses, this will be set to a default value provided by Linode if not explicitly set.
    region String
    The Region this IP address resides in. See all regions here.
    reserved Boolean
    Whether this IP address is a reserved IP.
    subnetMask String
    The mask that separates host bits from network bits for this address.
    type String
    The type of address this is (ipv4, ipv6, ipv6/pool, ipv6/range).

    Package Details

    Repository
    Linode pulumi/pulumi-linode
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the linode Terraform Provider.
    linode logo
    Linode v4.36.0 published on Thursday, Mar 27, 2025 by Pulumi