1. Packages
  2. Flexibleengine Provider
  3. API Docs
  4. NetworkingFloatingipV2
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud

flexibleengine.NetworkingFloatingipV2

Explore with Pulumi AI

Manages a V2 floating IP resource within FlexibleEngine.

!> Warning: It will be deprecated, using flexibleengine.VpcEip instead.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as flexibleengine from "@pulumi/flexibleengine";

const floatip1 = new flexibleengine.NetworkingFloatingipV2("floatip1", {});
Copy
import pulumi
import pulumi_flexibleengine as flexibleengine

floatip1 = flexibleengine.NetworkingFloatingipV2("floatip1")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/flexibleengine/flexibleengine"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := flexibleengine.NewNetworkingFloatingipV2(ctx, "floatip1", nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Flexibleengine = Pulumi.Flexibleengine;

return await Deployment.RunAsync(() => 
{
    var floatip1 = new Flexibleengine.NetworkingFloatingipV2("floatip1");

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.flexibleengine.NetworkingFloatingipV2;
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 floatip1 = new NetworkingFloatingipV2("floatip1");

    }
}
Copy
resources:
  floatip1:
    type: flexibleengine:NetworkingFloatingipV2
Copy

Create NetworkingFloatingipV2 Resource

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

Constructor syntax

new NetworkingFloatingipV2(name: string, args?: NetworkingFloatingipV2Args, opts?: CustomResourceOptions);
@overload
def NetworkingFloatingipV2(resource_name: str,
                           args: Optional[NetworkingFloatingipV2Args] = None,
                           opts: Optional[ResourceOptions] = None)

@overload
def NetworkingFloatingipV2(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           fixed_ip: Optional[str] = None,
                           networking_floatingip_v2_id: Optional[str] = None,
                           pool: Optional[str] = None,
                           port_id: Optional[str] = None,
                           region: Optional[str] = None,
                           tenant_id: Optional[str] = None,
                           timeouts: Optional[NetworkingFloatingipV2TimeoutsArgs] = None,
                           value_specs: Optional[Mapping[str, str]] = None)
func NewNetworkingFloatingipV2(ctx *Context, name string, args *NetworkingFloatingipV2Args, opts ...ResourceOption) (*NetworkingFloatingipV2, error)
public NetworkingFloatingipV2(string name, NetworkingFloatingipV2Args? args = null, CustomResourceOptions? opts = null)
public NetworkingFloatingipV2(String name, NetworkingFloatingipV2Args args)
public NetworkingFloatingipV2(String name, NetworkingFloatingipV2Args args, CustomResourceOptions options)
type: flexibleengine:NetworkingFloatingipV2
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args NetworkingFloatingipV2Args
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args NetworkingFloatingipV2Args
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args NetworkingFloatingipV2Args
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args NetworkingFloatingipV2Args
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. NetworkingFloatingipV2Args
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 networkingFloatingipV2Resource = new Flexibleengine.NetworkingFloatingipV2("networkingFloatingipV2Resource", new()
{
    FixedIp = "string",
    NetworkingFloatingipV2Id = "string",
    Pool = "string",
    PortId = "string",
    Region = "string",
    TenantId = "string",
    Timeouts = new Flexibleengine.Inputs.NetworkingFloatingipV2TimeoutsArgs
    {
        Create = "string",
        Delete = "string",
    },
    ValueSpecs = 
    {
        { "string", "string" },
    },
});
Copy
example, err := flexibleengine.NewNetworkingFloatingipV2(ctx, "networkingFloatingipV2Resource", &flexibleengine.NetworkingFloatingipV2Args{
FixedIp: pulumi.String("string"),
NetworkingFloatingipV2Id: pulumi.String("string"),
Pool: pulumi.String("string"),
PortId: pulumi.String("string"),
Region: pulumi.String("string"),
TenantId: pulumi.String("string"),
Timeouts: &.NetworkingFloatingipV2TimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
},
ValueSpecs: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
Copy
var networkingFloatingipV2Resource = new NetworkingFloatingipV2("networkingFloatingipV2Resource", NetworkingFloatingipV2Args.builder()
    .fixedIp("string")
    .networkingFloatingipV2Id("string")
    .pool("string")
    .portId("string")
    .region("string")
    .tenantId("string")
    .timeouts(NetworkingFloatingipV2TimeoutsArgs.builder()
        .create("string")
        .delete("string")
        .build())
    .valueSpecs(Map.of("string", "string"))
    .build());
Copy
networking_floatingip_v2_resource = flexibleengine.NetworkingFloatingipV2("networkingFloatingipV2Resource",
    fixed_ip="string",
    networking_floatingip_v2_id="string",
    pool="string",
    port_id="string",
    region="string",
    tenant_id="string",
    timeouts={
        "create": "string",
        "delete": "string",
    },
    value_specs={
        "string": "string",
    })
Copy
const networkingFloatingipV2Resource = new flexibleengine.NetworkingFloatingipV2("networkingFloatingipV2Resource", {
    fixedIp: "string",
    networkingFloatingipV2Id: "string",
    pool: "string",
    portId: "string",
    region: "string",
    tenantId: "string",
    timeouts: {
        create: "string",
        "delete": "string",
    },
    valueSpecs: {
        string: "string",
    },
});
Copy
type: flexibleengine:NetworkingFloatingipV2
properties:
    fixedIp: string
    networkingFloatingipV2Id: string
    pool: string
    portId: string
    region: string
    tenantId: string
    timeouts:
        create: string
        delete: string
    valueSpecs:
        string: string
Copy

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

FixedIp string
Fixed IP of the port to associate with this floating IP. Required if the port has multiple fixed IPs.
NetworkingFloatingipV2Id string
Pool string
The name of the pool from which to obtain the floating IP. Default value is admin_external_net. Changing this creates a new floating IP.
PortId string
ID of an existing port with at least one IP address to associate with this floating IP.
Region string
The region in which to obtain the V2 Networking client. A Networking client is needed to create a floating IP that can be used with another networking resource, such as a load balancer. If omitted, the region argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
TenantId string
The target tenant ID in which to allocate the floating IP, if you specify this together with a port_id, make sure the target port belongs to the same tenant. Changing this creates a new floating IP (which may or may not have a different address)
Timeouts NetworkingFloatingipV2Timeouts
ValueSpecs Dictionary<string, string>
Map of additional options.
FixedIp string
Fixed IP of the port to associate with this floating IP. Required if the port has multiple fixed IPs.
NetworkingFloatingipV2Id string
Pool string
The name of the pool from which to obtain the floating IP. Default value is admin_external_net. Changing this creates a new floating IP.
PortId string
ID of an existing port with at least one IP address to associate with this floating IP.
Region string
The region in which to obtain the V2 Networking client. A Networking client is needed to create a floating IP that can be used with another networking resource, such as a load balancer. If omitted, the region argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
TenantId string
The target tenant ID in which to allocate the floating IP, if you specify this together with a port_id, make sure the target port belongs to the same tenant. Changing this creates a new floating IP (which may or may not have a different address)
Timeouts NetworkingFloatingipV2TimeoutsArgs
ValueSpecs map[string]string
Map of additional options.
fixedIp String
Fixed IP of the port to associate with this floating IP. Required if the port has multiple fixed IPs.
networkingFloatingipV2Id String
pool String
The name of the pool from which to obtain the floating IP. Default value is admin_external_net. Changing this creates a new floating IP.
portId String
ID of an existing port with at least one IP address to associate with this floating IP.
region String
The region in which to obtain the V2 Networking client. A Networking client is needed to create a floating IP that can be used with another networking resource, such as a load balancer. If omitted, the region argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
tenantId String
The target tenant ID in which to allocate the floating IP, if you specify this together with a port_id, make sure the target port belongs to the same tenant. Changing this creates a new floating IP (which may or may not have a different address)
timeouts NetworkingFloatingipV2Timeouts
valueSpecs Map<String,String>
Map of additional options.
fixedIp string
Fixed IP of the port to associate with this floating IP. Required if the port has multiple fixed IPs.
networkingFloatingipV2Id string
pool string
The name of the pool from which to obtain the floating IP. Default value is admin_external_net. Changing this creates a new floating IP.
portId string
ID of an existing port with at least one IP address to associate with this floating IP.
region string
The region in which to obtain the V2 Networking client. A Networking client is needed to create a floating IP that can be used with another networking resource, such as a load balancer. If omitted, the region argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
tenantId string
The target tenant ID in which to allocate the floating IP, if you specify this together with a port_id, make sure the target port belongs to the same tenant. Changing this creates a new floating IP (which may or may not have a different address)
timeouts NetworkingFloatingipV2Timeouts
valueSpecs {[key: string]: string}
Map of additional options.
fixed_ip str
Fixed IP of the port to associate with this floating IP. Required if the port has multiple fixed IPs.
networking_floatingip_v2_id str
pool str
The name of the pool from which to obtain the floating IP. Default value is admin_external_net. Changing this creates a new floating IP.
port_id str
ID of an existing port with at least one IP address to associate with this floating IP.
region str
The region in which to obtain the V2 Networking client. A Networking client is needed to create a floating IP that can be used with another networking resource, such as a load balancer. If omitted, the region argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
tenant_id str
The target tenant ID in which to allocate the floating IP, if you specify this together with a port_id, make sure the target port belongs to the same tenant. Changing this creates a new floating IP (which may or may not have a different address)
timeouts NetworkingFloatingipV2TimeoutsArgs
value_specs Mapping[str, str]
Map of additional options.
fixedIp String
Fixed IP of the port to associate with this floating IP. Required if the port has multiple fixed IPs.
networkingFloatingipV2Id String
pool String
The name of the pool from which to obtain the floating IP. Default value is admin_external_net. Changing this creates a new floating IP.
portId String
ID of an existing port with at least one IP address to associate with this floating IP.
region String
The region in which to obtain the V2 Networking client. A Networking client is needed to create a floating IP that can be used with another networking resource, such as a load balancer. If omitted, the region argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
tenantId String
The target tenant ID in which to allocate the floating IP, if you specify this together with a port_id, make sure the target port belongs to the same tenant. Changing this creates a new floating IP (which may or may not have a different address)
timeouts Property Map
valueSpecs Map<String>
Map of additional options.

Outputs

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

Address string
The actual floating IP address itself.
Id string
The provider-assigned unique ID for this managed resource.
Address string
The actual floating IP address itself.
Id string
The provider-assigned unique ID for this managed resource.
address String
The actual floating IP address itself.
id String
The provider-assigned unique ID for this managed resource.
address string
The actual floating IP address itself.
id string
The provider-assigned unique ID for this managed resource.
address str
The actual floating IP address itself.
id str
The provider-assigned unique ID for this managed resource.
address String
The actual floating IP address itself.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing NetworkingFloatingipV2 Resource

Get an existing NetworkingFloatingipV2 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?: NetworkingFloatingipV2State, opts?: CustomResourceOptions): NetworkingFloatingipV2
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        address: Optional[str] = None,
        fixed_ip: Optional[str] = None,
        networking_floatingip_v2_id: Optional[str] = None,
        pool: Optional[str] = None,
        port_id: Optional[str] = None,
        region: Optional[str] = None,
        tenant_id: Optional[str] = None,
        timeouts: Optional[NetworkingFloatingipV2TimeoutsArgs] = None,
        value_specs: Optional[Mapping[str, str]] = None) -> NetworkingFloatingipV2
func GetNetworkingFloatingipV2(ctx *Context, name string, id IDInput, state *NetworkingFloatingipV2State, opts ...ResourceOption) (*NetworkingFloatingipV2, error)
public static NetworkingFloatingipV2 Get(string name, Input<string> id, NetworkingFloatingipV2State? state, CustomResourceOptions? opts = null)
public static NetworkingFloatingipV2 get(String name, Output<String> id, NetworkingFloatingipV2State state, CustomResourceOptions options)
resources:  _:    type: flexibleengine:NetworkingFloatingipV2    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Address string
The actual floating IP address itself.
FixedIp string
Fixed IP of the port to associate with this floating IP. Required if the port has multiple fixed IPs.
NetworkingFloatingipV2Id string
Pool string
The name of the pool from which to obtain the floating IP. Default value is admin_external_net. Changing this creates a new floating IP.
PortId string
ID of an existing port with at least one IP address to associate with this floating IP.
Region string
The region in which to obtain the V2 Networking client. A Networking client is needed to create a floating IP that can be used with another networking resource, such as a load balancer. If omitted, the region argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
TenantId string
The target tenant ID in which to allocate the floating IP, if you specify this together with a port_id, make sure the target port belongs to the same tenant. Changing this creates a new floating IP (which may or may not have a different address)
Timeouts NetworkingFloatingipV2Timeouts
ValueSpecs Dictionary<string, string>
Map of additional options.
Address string
The actual floating IP address itself.
FixedIp string
Fixed IP of the port to associate with this floating IP. Required if the port has multiple fixed IPs.
NetworkingFloatingipV2Id string
Pool string
The name of the pool from which to obtain the floating IP. Default value is admin_external_net. Changing this creates a new floating IP.
PortId string
ID of an existing port with at least one IP address to associate with this floating IP.
Region string
The region in which to obtain the V2 Networking client. A Networking client is needed to create a floating IP that can be used with another networking resource, such as a load balancer. If omitted, the region argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
TenantId string
The target tenant ID in which to allocate the floating IP, if you specify this together with a port_id, make sure the target port belongs to the same tenant. Changing this creates a new floating IP (which may or may not have a different address)
Timeouts NetworkingFloatingipV2TimeoutsArgs
ValueSpecs map[string]string
Map of additional options.
address String
The actual floating IP address itself.
fixedIp String
Fixed IP of the port to associate with this floating IP. Required if the port has multiple fixed IPs.
networkingFloatingipV2Id String
pool String
The name of the pool from which to obtain the floating IP. Default value is admin_external_net. Changing this creates a new floating IP.
portId String
ID of an existing port with at least one IP address to associate with this floating IP.
region String
The region in which to obtain the V2 Networking client. A Networking client is needed to create a floating IP that can be used with another networking resource, such as a load balancer. If omitted, the region argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
tenantId String
The target tenant ID in which to allocate the floating IP, if you specify this together with a port_id, make sure the target port belongs to the same tenant. Changing this creates a new floating IP (which may or may not have a different address)
timeouts NetworkingFloatingipV2Timeouts
valueSpecs Map<String,String>
Map of additional options.
address string
The actual floating IP address itself.
fixedIp string
Fixed IP of the port to associate with this floating IP. Required if the port has multiple fixed IPs.
networkingFloatingipV2Id string
pool string
The name of the pool from which to obtain the floating IP. Default value is admin_external_net. Changing this creates a new floating IP.
portId string
ID of an existing port with at least one IP address to associate with this floating IP.
region string
The region in which to obtain the V2 Networking client. A Networking client is needed to create a floating IP that can be used with another networking resource, such as a load balancer. If omitted, the region argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
tenantId string
The target tenant ID in which to allocate the floating IP, if you specify this together with a port_id, make sure the target port belongs to the same tenant. Changing this creates a new floating IP (which may or may not have a different address)
timeouts NetworkingFloatingipV2Timeouts
valueSpecs {[key: string]: string}
Map of additional options.
address str
The actual floating IP address itself.
fixed_ip str
Fixed IP of the port to associate with this floating IP. Required if the port has multiple fixed IPs.
networking_floatingip_v2_id str
pool str
The name of the pool from which to obtain the floating IP. Default value is admin_external_net. Changing this creates a new floating IP.
port_id str
ID of an existing port with at least one IP address to associate with this floating IP.
region str
The region in which to obtain the V2 Networking client. A Networking client is needed to create a floating IP that can be used with another networking resource, such as a load balancer. If omitted, the region argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
tenant_id str
The target tenant ID in which to allocate the floating IP, if you specify this together with a port_id, make sure the target port belongs to the same tenant. Changing this creates a new floating IP (which may or may not have a different address)
timeouts NetworkingFloatingipV2TimeoutsArgs
value_specs Mapping[str, str]
Map of additional options.
address String
The actual floating IP address itself.
fixedIp String
Fixed IP of the port to associate with this floating IP. Required if the port has multiple fixed IPs.
networkingFloatingipV2Id String
pool String
The name of the pool from which to obtain the floating IP. Default value is admin_external_net. Changing this creates a new floating IP.
portId String
ID of an existing port with at least one IP address to associate with this floating IP.
region String
The region in which to obtain the V2 Networking client. A Networking client is needed to create a floating IP that can be used with another networking resource, such as a load balancer. If omitted, the region argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
tenantId String
The target tenant ID in which to allocate the floating IP, if you specify this together with a port_id, make sure the target port belongs to the same tenant. Changing this creates a new floating IP (which may or may not have a different address)
timeouts Property Map
valueSpecs Map<String>
Map of additional options.

Supporting Types

NetworkingFloatingipV2Timeouts
, NetworkingFloatingipV2TimeoutsArgs

Create string
Delete string
Create string
Delete string
create String
delete String
create string
delete string
create str
delete str
create String
delete String

Import

Floating IPs can be imported using the id, e.g.

$ pulumi import flexibleengine:index/networkingFloatingipV2:NetworkingFloatingipV2 floatip_1 2c7f39f3-702b-48d1-940c-b50384177ee1
Copy

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

Package Details

Repository
flexibleengine flexibleenginecloud/terraform-provider-flexibleengine
License
Notes
This Pulumi package is based on the flexibleengine Terraform Provider.