linode.NetworkingIp
Explore with Pulumi AI
Create NetworkingIp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkingIp(name: string, args?: NetworkingIpArgs, opts?: CustomResourceOptions);
@overload
def NetworkingIp(resource_name: str,
args: Optional[NetworkingIpArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def NetworkingIp(resource_name: str,
opts: Optional[ResourceOptions] = None,
linode_id: Optional[int] = None,
public: Optional[bool] = None,
region: Optional[str] = None,
reserved: Optional[bool] = None,
type: Optional[str] = None)
func NewNetworkingIp(ctx *Context, name string, args *NetworkingIpArgs, opts ...ResourceOption) (*NetworkingIp, error)
public NetworkingIp(string name, NetworkingIpArgs? args = null, CustomResourceOptions? opts = null)
public NetworkingIp(String name, NetworkingIpArgs args)
public NetworkingIp(String name, NetworkingIpArgs args, CustomResourceOptions options)
type: linode:NetworkingIp
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 NetworkingIpArgs
- 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 NetworkingIpArgs
- 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 NetworkingIpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkingIpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkingIpArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var networkingIpResource = new Linode.NetworkingIp("networkingIpResource", new()
{
LinodeId = 0,
Public = false,
Region = "string",
Reserved = false,
Type = "string",
});
example, err := linode.NewNetworkingIp(ctx, "networkingIpResource", &linode.NetworkingIpArgs{
LinodeId: pulumi.Int(0),
Public: pulumi.Bool(false),
Region: pulumi.String("string"),
Reserved: pulumi.Bool(false),
Type: pulumi.String("string"),
})
var networkingIpResource = new NetworkingIp("networkingIpResource", NetworkingIpArgs.builder()
.linodeId(0)
.public_(false)
.region("string")
.reserved(false)
.type("string")
.build());
networking_ip_resource = linode.NetworkingIp("networkingIpResource",
linode_id=0,
public=False,
region="string",
reserved=False,
type="string")
const networkingIpResource = new linode.NetworkingIp("networkingIpResource", {
linodeId: 0,
"public": false,
region: "string",
reserved: false,
type: "string",
});
type: linode:NetworkingIp
properties:
linodeId: 0
public: false
region: string
reserved: false
type: string
NetworkingIp Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The NetworkingIp resource accepts the following input properties:
- Linode
Id int - The ID of the Linode to allocate an IPv4 address for. Required when reserved is false or not set.
- Public bool
- Whether the IPv4 address is public or private.
- Region string
- The region for the reserved IPv4 address. Required when reserved is true and linode_id is not set.
- Reserved bool
- Whether the IPv4 address should be reserved.
- Type string
- The type of IP address (ipv4).
- Linode
Id int - The ID of the Linode to allocate an IPv4 address for. Required when reserved is false or not set.
- Public bool
- Whether the IPv4 address is public or private.
- Region string
- The region for the reserved IPv4 address. Required when reserved is true and linode_id is not set.
- Reserved bool
- Whether the IPv4 address should be reserved.
- Type string
- The type of IP address (ipv4).
- linode
Id Integer - The ID of the Linode to allocate an IPv4 address for. Required when reserved is false or not set.
- public_ Boolean
- Whether the IPv4 address is public or private.
- region String
- The region for the reserved IPv4 address. Required when reserved is true and linode_id is not set.
- reserved Boolean
- Whether the IPv4 address should be reserved.
- type String
- The type of IP address (ipv4).
- linode
Id number - The ID of the Linode to allocate an IPv4 address for. Required when reserved is false or not set.
- public boolean
- Whether the IPv4 address is public or private.
- region string
- The region for the reserved IPv4 address. Required when reserved is true and linode_id is not set.
- reserved boolean
- Whether the IPv4 address should be reserved.
- type string
- The type of IP address (ipv4).
- linode_
id int - The ID of the Linode to allocate an IPv4 address for. Required when reserved is false or not set.
- public bool
- Whether the IPv4 address is public or private.
- region str
- The region for the reserved IPv4 address. Required when reserved is true and linode_id is not set.
- reserved bool
- Whether the IPv4 address should be reserved.
- type str
- The type of IP address (ipv4).
- linode
Id Number - The ID of the Linode to allocate an IPv4 address for. Required when reserved is false or not set.
- public Boolean
- Whether the IPv4 address is public or private.
- region String
- The region for the reserved IPv4 address. Required when reserved is true and linode_id is not set.
- reserved Boolean
- Whether the IPv4 address should be reserved.
- type String
- The type of IP address (ipv4).
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkingIp resource produces the following output properties:
Look up Existing NetworkingIp Resource
Get an existing NetworkingIp 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?: NetworkingIpState, opts?: CustomResourceOptions): NetworkingIp
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
address: Optional[str] = None,
linode_id: Optional[int] = None,
public: Optional[bool] = None,
region: Optional[str] = None,
reserved: Optional[bool] = None,
type: Optional[str] = None) -> NetworkingIp
func GetNetworkingIp(ctx *Context, name string, id IDInput, state *NetworkingIpState, opts ...ResourceOption) (*NetworkingIp, error)
public static NetworkingIp Get(string name, Input<string> id, NetworkingIpState? state, CustomResourceOptions? opts = null)
public static NetworkingIp get(String name, Output<String> id, NetworkingIpState 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.
- Address string
- The allocated IPv4 address.
- Linode
Id int - The ID of the Linode to allocate an IPv4 address for. Required when reserved is false or not set.
- Public bool
- Whether the IPv4 address is public or private.
- Region string
- The region for the reserved IPv4 address. Required when reserved is true and linode_id is not set.
- Reserved bool
- Whether the IPv4 address should be reserved.
- Type string
- The type of IP address (ipv4).
- Address string
- The allocated IPv4 address.
- Linode
Id int - The ID of the Linode to allocate an IPv4 address for. Required when reserved is false or not set.
- Public bool
- Whether the IPv4 address is public or private.
- Region string
- The region for the reserved IPv4 address. Required when reserved is true and linode_id is not set.
- Reserved bool
- Whether the IPv4 address should be reserved.
- Type string
- The type of IP address (ipv4).
- address String
- The allocated IPv4 address.
- linode
Id Integer - The ID of the Linode to allocate an IPv4 address for. Required when reserved is false or not set.
- public_ Boolean
- Whether the IPv4 address is public or private.
- region String
- The region for the reserved IPv4 address. Required when reserved is true and linode_id is not set.
- reserved Boolean
- Whether the IPv4 address should be reserved.
- type String
- The type of IP address (ipv4).
- address string
- The allocated IPv4 address.
- linode
Id number - The ID of the Linode to allocate an IPv4 address for. Required when reserved is false or not set.
- public boolean
- Whether the IPv4 address is public or private.
- region string
- The region for the reserved IPv4 address. Required when reserved is true and linode_id is not set.
- reserved boolean
- Whether the IPv4 address should be reserved.
- type string
- The type of IP address (ipv4).
- address str
- The allocated IPv4 address.
- linode_
id int - The ID of the Linode to allocate an IPv4 address for. Required when reserved is false or not set.
- public bool
- Whether the IPv4 address is public or private.
- region str
- The region for the reserved IPv4 address. Required when reserved is true and linode_id is not set.
- reserved bool
- Whether the IPv4 address should be reserved.
- type str
- The type of IP address (ipv4).
- address String
- The allocated IPv4 address.
- linode
Id Number - The ID of the Linode to allocate an IPv4 address for. Required when reserved is false or not set.
- public Boolean
- Whether the IPv4 address is public or private.
- region String
- The region for the reserved IPv4 address. Required when reserved is true and linode_id is not set.
- reserved Boolean
- Whether the IPv4 address should be reserved.
- type String
- The type of IP address (ipv4).
Package Details
- Repository
- Linode pulumi/pulumi-linode
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
linode
Terraform Provider.