Linode v4.22.0 published on Tuesday, Jun 25, 2024 by Pulumi
linode.getInstanceNetworking
Explore with Pulumi AI
Provides details about the networking configuration of an Instance.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as linode from "@pulumi/linode";
const example = linode.getInstanceNetworking({
linodeId: 123,
});
import pulumi
import pulumi_linode as linode
example = linode.get_instance_networking(linode_id=123)
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.GetInstanceNetworking(ctx, &linode.GetInstanceNetworkingArgs{
LinodeId: 123,
}, 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 example = Linode.GetInstanceNetworking.Invoke(new()
{
LinodeId = 123,
});
});
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.GetInstanceNetworkingArgs;
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 example = LinodeFunctions.getInstanceNetworking(GetInstanceNetworkingArgs.builder()
.linodeId(123)
.build());
}
}
variables:
example:
fn::invoke:
Function: linode:getInstanceNetworking
Arguments:
linodeId: 123
Using getInstanceNetworking
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 getInstanceNetworking(args: GetInstanceNetworkingArgs, opts?: InvokeOptions): Promise<GetInstanceNetworkingResult>
function getInstanceNetworkingOutput(args: GetInstanceNetworkingOutputArgs, opts?: InvokeOptions): Output<GetInstanceNetworkingResult>
def get_instance_networking(linode_id: Optional[int] = None,
opts: Optional[InvokeOptions] = None) -> GetInstanceNetworkingResult
def get_instance_networking_output(linode_id: Optional[pulumi.Input[int]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetInstanceNetworkingResult]
func GetInstanceNetworking(ctx *Context, args *GetInstanceNetworkingArgs, opts ...InvokeOption) (*GetInstanceNetworkingResult, error)
func GetInstanceNetworkingOutput(ctx *Context, args *GetInstanceNetworkingOutputArgs, opts ...InvokeOption) GetInstanceNetworkingResultOutput
> Note: This function is named GetInstanceNetworking
in the Go SDK.
public static class GetInstanceNetworking
{
public static Task<GetInstanceNetworkingResult> InvokeAsync(GetInstanceNetworkingArgs args, InvokeOptions? opts = null)
public static Output<GetInstanceNetworkingResult> Invoke(GetInstanceNetworkingInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetInstanceNetworkingResult> getInstanceNetworking(GetInstanceNetworkingArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: linode:index/getInstanceNetworking:getInstanceNetworking
arguments:
# arguments dictionary
The following arguments are supported:
- Linode
Id int - The Linode instance's ID.
- Linode
Id int - The Linode instance's ID.
- linode
Id Integer - The Linode instance's ID.
- linode
Id number - The Linode instance's ID.
- linode_
id int - The Linode instance's ID.
- linode
Id Number - The Linode instance's ID.
getInstanceNetworking Result
The following output properties are available:
- Id string
- Ipv4s
List<Get
Instance Networking Ipv4> - Ipv6s
List<Get
Instance Networking Ipv6> - Linode
Id int - The ID of the Linode this address currently belongs to.
- Id string
- Ipv4s
[]Get
Instance Networking Ipv4 - Ipv6s
[]Get
Instance Networking Ipv6 - Linode
Id int - The ID of the Linode this address currently belongs to.
- id String
- ipv4s
List<Get
Instance Networking Ipv4> - ipv6s
List<Get
Instance Networking Ipv6> - linode
Id Integer - The ID of the Linode this address currently belongs to.
- id string
- ipv4s
Get
Instance Networking Ipv4[] - ipv6s
Get
Instance Networking Ipv6[] - linode
Id number - The ID of the Linode this address currently belongs to.
- id str
- ipv4s
Sequence[Get
Instance Networking Ipv4] - ipv6s
Sequence[Get
Instance Networking Ipv6] - linode_
id int - The ID of the Linode this address currently belongs to.
- id String
- ipv4s List<Property Map>
- ipv6s List<Property Map>
- linode
Id Number - The ID of the Linode this address currently belongs to.
Supporting Types
GetInstanceNetworkingIpv4
- Privates
[]Get
Instance Networking Ipv4Private - Publics
[]Get
Instance Networking Ipv4Public - Whether this is a public or private IP address.
- Reserveds
[]Get
Instance Networking Ipv4Reserved - []Get
Instance Networking Ipv4Shared - Vpcs
[]Get
Instance Networking Ipv4Vpc
- privates
Get
Instance Networking Ipv4Private[] - publics
Get
Instance Networking Ipv4Public[] - Whether this is a public or private IP address.
- reserveds
Get
Instance Networking Ipv4Reserved[] - Get
Instance Networking Ipv4Shared[] - vpcs
Get
Instance Networking Ipv4Vpc[]
- privates List<Property Map>
- publics List<Property Map>
- Whether this is a public or private IP address.
- reserveds List<Property Map>
- List<Property Map>
- vpcs List<Property Map>
GetInstanceNetworkingIpv4Private
- Address string
- The address.
- Gateway string
- The default gateway for this address.
- Linode
Id int - The Linode instance's ID.
- Prefix int
- The network prefix.
- Public bool
- Whether this is a public or private IP address.
- Rdns string
- The reverse DNS assigned to this address.
- Region string
- (Filterable) The Region this address resides in.
- Subnet
Mask string - The subnet mask.
- Type string
- The type of address this is.
- Vpc
Nat11 GetInstance Networking Ipv4Private Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- Address string
- The address.
- Gateway string
- The default gateway for this address.
- Linode
Id int - The Linode instance's ID.
- Prefix int
- The network prefix.
- Public bool
- Whether this is a public or private IP address.
- Rdns string
- The reverse DNS assigned to this address.
- Region string
- (Filterable) The Region this address resides in.
- Subnet
Mask string - The subnet mask.
- Type string
- The type of address this is.
- Vpc
Nat11 GetInstance Networking Ipv4Private Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address String
- The address.
- gateway String
- The default gateway for this address.
- linode
Id Integer - The Linode instance's ID.
- prefix Integer
- The network prefix.
- public_ Boolean
- Whether this is a public or private IP address.
- rdns String
- The reverse DNS assigned to this address.
- region String
- (Filterable) The Region this address resides in.
- subnet
Mask String - The subnet mask.
- type String
- The type of address this is.
- vpc
Nat11 GetInstance Networking Ipv4Private Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address string
- The address.
- gateway string
- The default gateway for this address.
- linode
Id number - The Linode instance's ID.
- prefix number
- The network prefix.
- public boolean
- Whether this is a public or private IP address.
- rdns string
- The reverse DNS assigned to this address.
- region string
- (Filterable) The Region this address resides in.
- subnet
Mask string - The subnet mask.
- type string
- The type of address this is.
- vpc
Nat11 GetInstance Networking Ipv4Private Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address str
- The address.
- gateway str
- The default gateway for this address.
- linode_
id int - The Linode instance's ID.
- prefix int
- The network prefix.
- public bool
- Whether this is a public or private IP address.
- rdns str
- The reverse DNS assigned to this address.
- region str
- (Filterable) The Region this address resides in.
- subnet_
mask str - The subnet mask.
- type str
- The type of address this is.
- vpc_
nat11 GetInstance Networking Ipv4Private Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address String
- The address.
- gateway String
- The default gateway for this address.
- linode
Id Number - The Linode instance's ID.
- prefix Number
- The network prefix.
- public Boolean
- Whether this is a public or private IP address.
- rdns String
- The reverse DNS assigned to this address.
- region String
- (Filterable) The Region this address resides in.
- subnet
Mask String - The subnet mask.
- type String
- The type of address this is.
- vpc
Nat11 Property Map - IPv4 address configured as a 1:1 NAT for this Interface.
GetInstanceNetworkingIpv4PrivateVpcNat11
GetInstanceNetworkingIpv4Public
- Address string
- The address.
- Gateway string
- The default gateway for this address.
- Linode
Id int - The Linode instance's ID.
- Prefix int
- The network prefix.
- Public bool
- Whether this is a public or private IP address.
- Rdns string
- The reverse DNS assigned to this address.
- Region string
- (Filterable) The Region this address resides in.
- Subnet
Mask string - The subnet mask.
- Type string
- The type of address this is.
- Vpc
Nat11 GetInstance Networking Ipv4Public Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- Address string
- The address.
- Gateway string
- The default gateway for this address.
- Linode
Id int - The Linode instance's ID.
- Prefix int
- The network prefix.
- Public bool
- Whether this is a public or private IP address.
- Rdns string
- The reverse DNS assigned to this address.
- Region string
- (Filterable) The Region this address resides in.
- Subnet
Mask string - The subnet mask.
- Type string
- The type of address this is.
- Vpc
Nat11 GetInstance Networking Ipv4Public Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address String
- The address.
- gateway String
- The default gateway for this address.
- linode
Id Integer - The Linode instance's ID.
- prefix Integer
- The network prefix.
- public_ Boolean
- Whether this is a public or private IP address.
- rdns String
- The reverse DNS assigned to this address.
- region String
- (Filterable) The Region this address resides in.
- subnet
Mask String - The subnet mask.
- type String
- The type of address this is.
- vpc
Nat11 GetInstance Networking Ipv4Public Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address string
- The address.
- gateway string
- The default gateway for this address.
- linode
Id number - The Linode instance's ID.
- prefix number
- The network prefix.
- public boolean
- Whether this is a public or private IP address.
- rdns string
- The reverse DNS assigned to this address.
- region string
- (Filterable) The Region this address resides in.
- subnet
Mask string - The subnet mask.
- type string
- The type of address this is.
- vpc
Nat11 GetInstance Networking Ipv4Public Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address str
- The address.
- gateway str
- The default gateway for this address.
- linode_
id int - The Linode instance's ID.
- prefix int
- The network prefix.
- public bool
- Whether this is a public or private IP address.
- rdns str
- The reverse DNS assigned to this address.
- region str
- (Filterable) The Region this address resides in.
- subnet_
mask str - The subnet mask.
- type str
- The type of address this is.
- vpc_
nat11 GetInstance Networking Ipv4Public Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address String
- The address.
- gateway String
- The default gateway for this address.
- linode
Id Number - The Linode instance's ID.
- prefix Number
- The network prefix.
- public Boolean
- Whether this is a public or private IP address.
- rdns String
- The reverse DNS assigned to this address.
- region String
- (Filterable) The Region this address resides in.
- subnet
Mask String - The subnet mask.
- type String
- The type of address this is.
- vpc
Nat11 Property Map - IPv4 address configured as a 1:1 NAT for this Interface.
GetInstanceNetworkingIpv4PublicVpcNat11
GetInstanceNetworkingIpv4Reserved
- Address string
- The address.
- Gateway string
- The default gateway for this address.
- Linode
Id int - The Linode instance's ID.
- Prefix int
- The network prefix.
- Public bool
- Whether this is a public or private IP address.
- Rdns string
- The reverse DNS assigned to this address.
- Region string
- (Filterable) The Region this address resides in.
- Subnet
Mask string - The subnet mask.
- Type string
- The type of address this is.
- Vpc
Nat11 GetInstance Networking Ipv4Reserved Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- Address string
- The address.
- Gateway string
- The default gateway for this address.
- Linode
Id int - The Linode instance's ID.
- Prefix int
- The network prefix.
- Public bool
- Whether this is a public or private IP address.
- Rdns string
- The reverse DNS assigned to this address.
- Region string
- (Filterable) The Region this address resides in.
- Subnet
Mask string - The subnet mask.
- Type string
- The type of address this is.
- Vpc
Nat11 GetInstance Networking Ipv4Reserved Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address String
- The address.
- gateway String
- The default gateway for this address.
- linode
Id Integer - The Linode instance's ID.
- prefix Integer
- The network prefix.
- public_ Boolean
- Whether this is a public or private IP address.
- rdns String
- The reverse DNS assigned to this address.
- region String
- (Filterable) The Region this address resides in.
- subnet
Mask String - The subnet mask.
- type String
- The type of address this is.
- vpc
Nat11 GetInstance Networking Ipv4Reserved Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address string
- The address.
- gateway string
- The default gateway for this address.
- linode
Id number - The Linode instance's ID.
- prefix number
- The network prefix.
- public boolean
- Whether this is a public or private IP address.
- rdns string
- The reverse DNS assigned to this address.
- region string
- (Filterable) The Region this address resides in.
- subnet
Mask string - The subnet mask.
- type string
- The type of address this is.
- vpc
Nat11 GetInstance Networking Ipv4Reserved Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address str
- The address.
- gateway str
- The default gateway for this address.
- linode_
id int - The Linode instance's ID.
- prefix int
- The network prefix.
- public bool
- Whether this is a public or private IP address.
- rdns str
- The reverse DNS assigned to this address.
- region str
- (Filterable) The Region this address resides in.
- subnet_
mask str - The subnet mask.
- type str
- The type of address this is.
- vpc_
nat11 GetInstance Networking Ipv4Reserved Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address String
- The address.
- gateway String
- The default gateway for this address.
- linode
Id Number - The Linode instance's ID.
- prefix Number
- The network prefix.
- public Boolean
- Whether this is a public or private IP address.
- rdns String
- The reverse DNS assigned to this address.
- region String
- (Filterable) The Region this address resides in.
- subnet
Mask String - The subnet mask.
- type String
- The type of address this is.
- vpc
Nat11 Property Map - IPv4 address configured as a 1:1 NAT for this Interface.
GetInstanceNetworkingIpv4ReservedVpcNat11
GetInstanceNetworkingIpv4Shared
- Address string
- The address.
- Gateway string
- The default gateway for this address.
- Linode
Id int - The Linode instance's ID.
- Prefix int
- The network prefix.
- Public bool
- Whether this is a public or private IP address.
- Rdns string
- The reverse DNS assigned to this address.
- Region string
- (Filterable) The Region this address resides in.
- Subnet
Mask string - The subnet mask.
- Type string
- The type of address this is.
- Vpc
Nat11 GetInstance Networking Ipv4Shared Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- Address string
- The address.
- Gateway string
- The default gateway for this address.
- Linode
Id int - The Linode instance's ID.
- Prefix int
- The network prefix.
- Public bool
- Whether this is a public or private IP address.
- Rdns string
- The reverse DNS assigned to this address.
- Region string
- (Filterable) The Region this address resides in.
- Subnet
Mask string - The subnet mask.
- Type string
- The type of address this is.
- Vpc
Nat11 GetInstance Networking Ipv4Shared Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address String
- The address.
- gateway String
- The default gateway for this address.
- linode
Id Integer - The Linode instance's ID.
- prefix Integer
- The network prefix.
- public_ Boolean
- Whether this is a public or private IP address.
- rdns String
- The reverse DNS assigned to this address.
- region String
- (Filterable) The Region this address resides in.
- subnet
Mask String - The subnet mask.
- type String
- The type of address this is.
- vpc
Nat11 GetInstance Networking Ipv4Shared Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address string
- The address.
- gateway string
- The default gateway for this address.
- linode
Id number - The Linode instance's ID.
- prefix number
- The network prefix.
- public boolean
- Whether this is a public or private IP address.
- rdns string
- The reverse DNS assigned to this address.
- region string
- (Filterable) The Region this address resides in.
- subnet
Mask string - The subnet mask.
- type string
- The type of address this is.
- vpc
Nat11 GetInstance Networking Ipv4Shared Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address str
- The address.
- gateway str
- The default gateway for this address.
- linode_
id int - The Linode instance's ID.
- prefix int
- The network prefix.
- public bool
- Whether this is a public or private IP address.
- rdns str
- The reverse DNS assigned to this address.
- region str
- (Filterable) The Region this address resides in.
- subnet_
mask str - The subnet mask.
- type str
- The type of address this is.
- vpc_
nat11 GetInstance Networking Ipv4Shared Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address String
- The address.
- gateway String
- The default gateway for this address.
- linode
Id Number - The Linode instance's ID.
- prefix Number
- The network prefix.
- public Boolean
- Whether this is a public or private IP address.
- rdns String
- The reverse DNS assigned to this address.
- region String
- (Filterable) The Region this address resides in.
- subnet
Mask String - The subnet mask.
- type String
- The type of address this is.
- vpc
Nat11 Property Map - IPv4 address configured as a 1:1 NAT for this Interface.
GetInstanceNetworkingIpv4SharedVpcNat11
GetInstanceNetworkingIpv4Vpc
- Active bool
- Returns
true
if the VPC interface is in use, meaning that the Linode was powered on using theconfig_id
to which the interface belongs. Otherwise returnsfalse
. - Address string
- The address.
- Address
Range string - A range of IPv4 addresses configured for this VPC interface. it will be
null
if it's a singleaddress
. - Config
Id int - The globally general entity identifier for the Linode configuration profile where the VPC is included.
- Gateway string
- The default gateway for this address.
- Interface
Id int - The globally general API entity identifier for the Linode interface.
- Linode
Id int - The Linode instance's ID.
- Nat11 string
- The public IP address used for NAT 1:1 with the VPC. This is
null
if the VPC interface uses anaddress_range
or NAT 1:1 isn't used. - Prefix int
- The network prefix.
- Region string
- (Filterable) The Region this address resides in.
- Subnet
Id int - The unique globally general API entity identifier for the VPC subnet.
- Subnet
Mask string - The subnet mask.
- Vpc
Id int - The unique globally general API entity identifier for the VPC.
- Active bool
- Returns
true
if the VPC interface is in use, meaning that the Linode was powered on using theconfig_id
to which the interface belongs. Otherwise returnsfalse
. - Address string
- The address.
- Address
Range string - A range of IPv4 addresses configured for this VPC interface. it will be
null
if it's a singleaddress
. - Config
Id int - The globally general entity identifier for the Linode configuration profile where the VPC is included.
- Gateway string
- The default gateway for this address.
- Interface
Id int - The globally general API entity identifier for the Linode interface.
- Linode
Id int - The Linode instance's ID.
- Nat11 string
- The public IP address used for NAT 1:1 with the VPC. This is
null
if the VPC interface uses anaddress_range
or NAT 1:1 isn't used. - Prefix int
- The network prefix.
- Region string
- (Filterable) The Region this address resides in.
- Subnet
Id int - The unique globally general API entity identifier for the VPC subnet.
- Subnet
Mask string - The subnet mask.
- Vpc
Id int - The unique globally general API entity identifier for the VPC.
- active Boolean
- Returns
true
if the VPC interface is in use, meaning that the Linode was powered on using theconfig_id
to which the interface belongs. Otherwise returnsfalse
. - address String
- The address.
- address
Range String - A range of IPv4 addresses configured for this VPC interface. it will be
null
if it's a singleaddress
. - config
Id Integer - The globally general entity identifier for the Linode configuration profile where the VPC is included.
- gateway String
- The default gateway for this address.
- interface
Id Integer - The globally general API entity identifier for the Linode interface.
- linode
Id Integer - The Linode instance's ID.
- nat11 String
- The public IP address used for NAT 1:1 with the VPC. This is
null
if the VPC interface uses anaddress_range
or NAT 1:1 isn't used. - prefix Integer
- The network prefix.
- region String
- (Filterable) The Region this address resides in.
- subnet
Id Integer - The unique globally general API entity identifier for the VPC subnet.
- subnet
Mask String - The subnet mask.
- vpc
Id Integer - The unique globally general API entity identifier for the VPC.
- active boolean
- Returns
true
if the VPC interface is in use, meaning that the Linode was powered on using theconfig_id
to which the interface belongs. Otherwise returnsfalse
. - address string
- The address.
- address
Range string - A range of IPv4 addresses configured for this VPC interface. it will be
null
if it's a singleaddress
. - config
Id number - The globally general entity identifier for the Linode configuration profile where the VPC is included.
- gateway string
- The default gateway for this address.
- interface
Id number - The globally general API entity identifier for the Linode interface.
- linode
Id number - The Linode instance's ID.
- nat11 string
- The public IP address used for NAT 1:1 with the VPC. This is
null
if the VPC interface uses anaddress_range
or NAT 1:1 isn't used. - prefix number
- The network prefix.
- region string
- (Filterable) The Region this address resides in.
- subnet
Id number - The unique globally general API entity identifier for the VPC subnet.
- subnet
Mask string - The subnet mask.
- vpc
Id number - The unique globally general API entity identifier for the VPC.
- active bool
- Returns
true
if the VPC interface is in use, meaning that the Linode was powered on using theconfig_id
to which the interface belongs. Otherwise returnsfalse
. - address str
- The address.
- address_
range str - A range of IPv4 addresses configured for this VPC interface. it will be
null
if it's a singleaddress
. - config_
id int - The globally general entity identifier for the Linode configuration profile where the VPC is included.
- gateway str
- The default gateway for this address.
- interface_
id int - The globally general API entity identifier for the Linode interface.
- linode_
id int - The Linode instance's ID.
- nat11 str
- The public IP address used for NAT 1:1 with the VPC. This is
null
if the VPC interface uses anaddress_range
or NAT 1:1 isn't used. - prefix int
- The network prefix.
- region str
- (Filterable) The Region this address resides in.
- subnet_
id int - The unique globally general API entity identifier for the VPC subnet.
- subnet_
mask str - The subnet mask.
- vpc_
id int - The unique globally general API entity identifier for the VPC.
- active Boolean
- Returns
true
if the VPC interface is in use, meaning that the Linode was powered on using theconfig_id
to which the interface belongs. Otherwise returnsfalse
. - address String
- The address.
- address
Range String - A range of IPv4 addresses configured for this VPC interface. it will be
null
if it's a singleaddress
. - config
Id Number - The globally general entity identifier for the Linode configuration profile where the VPC is included.
- gateway String
- The default gateway for this address.
- interface
Id Number - The globally general API entity identifier for the Linode interface.
- linode
Id Number - The Linode instance's ID.
- nat11 String
- The public IP address used for NAT 1:1 with the VPC. This is
null
if the VPC interface uses anaddress_range
or NAT 1:1 isn't used. - prefix Number
- The network prefix.
- region String
- (Filterable) The Region this address resides in.
- subnet
Id Number - The unique globally general API entity identifier for the VPC subnet.
- subnet
Mask String - The subnet mask.
- vpc
Id Number - The unique globally general API entity identifier for the VPC.
GetInstanceNetworkingIpv6
GetInstanceNetworkingIpv6Global
- Prefix int
- The network prefix.
- Range string
- The IPv6 range of addresses in this pool.
- Region string
- (Filterable) The Region this address resides in.
- Route
Target string - (Nullable) The last address in this block of IPv6 addresses.
- Prefix int
- The network prefix.
- Range string
- The IPv6 range of addresses in this pool.
- Region string
- (Filterable) The Region this address resides in.
- Route
Target string - (Nullable) The last address in this block of IPv6 addresses.
- prefix Integer
- The network prefix.
- range String
- The IPv6 range of addresses in this pool.
- region String
- (Filterable) The Region this address resides in.
- route
Target String - (Nullable) The last address in this block of IPv6 addresses.
- prefix number
- The network prefix.
- range string
- The IPv6 range of addresses in this pool.
- region string
- (Filterable) The Region this address resides in.
- route
Target string - (Nullable) The last address in this block of IPv6 addresses.
- prefix int
- The network prefix.
- range str
- The IPv6 range of addresses in this pool.
- region str
- (Filterable) The Region this address resides in.
- route_
target str - (Nullable) The last address in this block of IPv6 addresses.
- prefix Number
- The network prefix.
- range String
- The IPv6 range of addresses in this pool.
- region String
- (Filterable) The Region this address resides in.
- route
Target String - (Nullable) The last address in this block of IPv6 addresses.
GetInstanceNetworkingIpv6LinkLocal
- Address string
- The address.
- Gateway string
- The default gateway for this address.
- Linode
Id int - The Linode instance's ID.
- Prefix int
- The network prefix.
- Public bool
- Whether this is a public or private IP address.
- Rdns string
- The reverse DNS assigned to this address.
- Region string
- (Filterable) The Region this address resides in.
- Subnet
Mask string - The subnet mask.
- Type string
- The type of address this is.
- Vpc
Nat11 GetInstance Networking Ipv6Link Local Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- Address string
- The address.
- Gateway string
- The default gateway for this address.
- Linode
Id int - The Linode instance's ID.
- Prefix int
- The network prefix.
- Public bool
- Whether this is a public or private IP address.
- Rdns string
- The reverse DNS assigned to this address.
- Region string
- (Filterable) The Region this address resides in.
- Subnet
Mask string - The subnet mask.
- Type string
- The type of address this is.
- Vpc
Nat11 GetInstance Networking Ipv6Link Local Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address String
- The address.
- gateway String
- The default gateway for this address.
- linode
Id Integer - The Linode instance's ID.
- prefix Integer
- The network prefix.
- public_ Boolean
- Whether this is a public or private IP address.
- rdns String
- The reverse DNS assigned to this address.
- region String
- (Filterable) The Region this address resides in.
- subnet
Mask String - The subnet mask.
- type String
- The type of address this is.
- vpc
Nat11 GetInstance Networking Ipv6Link Local Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address string
- The address.
- gateway string
- The default gateway for this address.
- linode
Id number - The Linode instance's ID.
- prefix number
- The network prefix.
- public boolean
- Whether this is a public or private IP address.
- rdns string
- The reverse DNS assigned to this address.
- region string
- (Filterable) The Region this address resides in.
- subnet
Mask string - The subnet mask.
- type string
- The type of address this is.
- vpc
Nat11 GetInstance Networking Ipv6Link Local Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address str
- The address.
- gateway str
- The default gateway for this address.
- linode_
id int - The Linode instance's ID.
- prefix int
- The network prefix.
- public bool
- Whether this is a public or private IP address.
- rdns str
- The reverse DNS assigned to this address.
- region str
- (Filterable) The Region this address resides in.
- subnet_
mask str - The subnet mask.
- type str
- The type of address this is.
- vpc_
nat11 GetInstance Networking Ipv6Link Local Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address String
- The address.
- gateway String
- The default gateway for this address.
- linode
Id Number - The Linode instance's ID.
- prefix Number
- The network prefix.
- public Boolean
- Whether this is a public or private IP address.
- rdns String
- The reverse DNS assigned to this address.
- region String
- (Filterable) The Region this address resides in.
- subnet
Mask String - The subnet mask.
- type String
- The type of address this is.
- vpc
Nat11 Property Map - IPv4 address configured as a 1:1 NAT for this Interface.
GetInstanceNetworkingIpv6LinkLocalVpcNat11
GetInstanceNetworkingIpv6Slaac
- Address string
- The address.
- Gateway string
- The default gateway for this address.
- Linode
Id int - The Linode instance's ID.
- Prefix int
- The network prefix.
- Public bool
- Whether this is a public or private IP address.
- Rdns string
- The reverse DNS assigned to this address.
- Region string
- (Filterable) The Region this address resides in.
- Subnet
Mask string - The subnet mask.
- Type string
- The type of address this is.
- Vpc
Nat11 GetInstance Networking Ipv6Slaac Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- Address string
- The address.
- Gateway string
- The default gateway for this address.
- Linode
Id int - The Linode instance's ID.
- Prefix int
- The network prefix.
- Public bool
- Whether this is a public or private IP address.
- Rdns string
- The reverse DNS assigned to this address.
- Region string
- (Filterable) The Region this address resides in.
- Subnet
Mask string - The subnet mask.
- Type string
- The type of address this is.
- Vpc
Nat11 GetInstance Networking Ipv6Slaac Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address String
- The address.
- gateway String
- The default gateway for this address.
- linode
Id Integer - The Linode instance's ID.
- prefix Integer
- The network prefix.
- public_ Boolean
- Whether this is a public or private IP address.
- rdns String
- The reverse DNS assigned to this address.
- region String
- (Filterable) The Region this address resides in.
- subnet
Mask String - The subnet mask.
- type String
- The type of address this is.
- vpc
Nat11 GetInstance Networking Ipv6Slaac Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address string
- The address.
- gateway string
- The default gateway for this address.
- linode
Id number - The Linode instance's ID.
- prefix number
- The network prefix.
- public boolean
- Whether this is a public or private IP address.
- rdns string
- The reverse DNS assigned to this address.
- region string
- (Filterable) The Region this address resides in.
- subnet
Mask string - The subnet mask.
- type string
- The type of address this is.
- vpc
Nat11 GetInstance Networking Ipv6Slaac Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address str
- The address.
- gateway str
- The default gateway for this address.
- linode_
id int - The Linode instance's ID.
- prefix int
- The network prefix.
- public bool
- Whether this is a public or private IP address.
- rdns str
- The reverse DNS assigned to this address.
- region str
- (Filterable) The Region this address resides in.
- subnet_
mask str - The subnet mask.
- type str
- The type of address this is.
- vpc_
nat11 GetInstance Networking Ipv6Slaac Vpc Nat11 - IPv4 address configured as a 1:1 NAT for this Interface.
- address String
- The address.
- gateway String
- The default gateway for this address.
- linode
Id Number - The Linode instance's ID.
- prefix Number
- The network prefix.
- public Boolean
- Whether this is a public or private IP address.
- rdns String
- The reverse DNS assigned to this address.
- region String
- (Filterable) The Region this address resides in.
- subnet
Mask String - The subnet mask.
- type String
- The type of address this is.
- vpc
Nat11 Property Map - IPv4 address configured as a 1:1 NAT for this Interface.
GetInstanceNetworkingIpv6SlaacVpcNat11
Package Details
- Repository
- Linode pulumi/pulumi-linode
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
linode
Terraform Provider.