1. Packages
  2. Edgecenter Provider
  3. API Docs
  4. Reservedfixedip
edgecenter 0.8.0 published on Wednesday, Apr 30, 2025 by edge-center

edgecenter.Reservedfixedip

Explore with Pulumi AI

edgecenter logo
edgecenter 0.8.0 published on Wednesday, Apr 30, 2025 by edge-center

    Represent reserved ips

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as edgecenter from "@pulumi/edgecenter";
    
    const fixedIp = new edgecenter.Reservedfixedip("fixedIp", {
        instancePortsThatShareVips: [
            "8296f985-eb1e-4ac8-8a99-cd1156746d30",
            "41233b81-f42r-46d0-8043-759c8c542219",
        ],
        isVip: true,
        projectId: 1,
        regionId: 1,
        type: "external",
    });
    
    import pulumi
    import pulumi_edgecenter as edgecenter
    
    fixed_ip = edgecenter.Reservedfixedip("fixedIp",
        instance_ports_that_share_vips=[
            "8296f985-eb1e-4ac8-8a99-cd1156746d30",
            "41233b81-f42r-46d0-8043-759c8c542219",
        ],
        is_vip=True,
        project_id=1,
        region_id=1,
        type="external")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/edgecenter/edgecenter"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := edgecenter.NewReservedfixedip(ctx, "fixedIp", &edgecenter.ReservedfixedipArgs{
    			InstancePortsThatShareVips: pulumi.StringArray{
    				pulumi.String("8296f985-eb1e-4ac8-8a99-cd1156746d30"),
    				pulumi.String("41233b81-f42r-46d0-8043-759c8c542219"),
    			},
    			IsVip:     pulumi.Bool(true),
    			ProjectId: pulumi.Float64(1),
    			RegionId:  pulumi.Float64(1),
    			Type:      pulumi.String("external"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Edgecenter = Pulumi.Edgecenter;
    
    return await Deployment.RunAsync(() => 
    {
        var fixedIp = new Edgecenter.Reservedfixedip("fixedIp", new()
        {
            InstancePortsThatShareVips = new[]
            {
                "8296f985-eb1e-4ac8-8a99-cd1156746d30",
                "41233b81-f42r-46d0-8043-759c8c542219",
            },
            IsVip = true,
            ProjectId = 1,
            RegionId = 1,
            Type = "external",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.edgecenter.Reservedfixedip;
    import com.pulumi.edgecenter.ReservedfixedipArgs;
    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 fixedIp = new Reservedfixedip("fixedIp", ReservedfixedipArgs.builder()
                .instancePortsThatShareVips(            
                    "8296f985-eb1e-4ac8-8a99-cd1156746d30",
                    "41233b81-f42r-46d0-8043-759c8c542219")
                .isVip(true)
                .projectId(1)
                .regionId(1)
                .type("external")
                .build());
    
        }
    }
    
    resources:
      fixedIp:
        type: edgecenter:Reservedfixedip
        properties:
          instancePortsThatShareVips:
            - 8296f985-eb1e-4ac8-8a99-cd1156746d30
            - 41233b81-f42r-46d0-8043-759c8c542219
          isVip: true
          projectId: 1
          regionId: 1
          type: external
    

    Create Reservedfixedip Resource

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

    Constructor syntax

    new Reservedfixedip(name: string, args: ReservedfixedipArgs, opts?: CustomResourceOptions);
    @overload
    def Reservedfixedip(resource_name: str,
                        args: ReservedfixedipArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def Reservedfixedip(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        type: Optional[str] = None,
                        project_id: Optional[float] = None,
                        instance_ports_that_share_vips: Optional[Sequence[str]] = None,
                        is_vip: Optional[bool] = None,
                        last_updated: Optional[str] = None,
                        network_id: Optional[str] = None,
                        allowed_address_pairs: Optional[Sequence[ReservedfixedipAllowedAddressPairArgs]] = None,
                        project_name: Optional[str] = None,
                        region_id: Optional[float] = None,
                        region_name: Optional[str] = None,
                        reservedfixedip_id: Optional[str] = None,
                        subnet_id: Optional[str] = None,
                        fixed_ip_address: Optional[str] = None)
    func NewReservedfixedip(ctx *Context, name string, args ReservedfixedipArgs, opts ...ResourceOption) (*Reservedfixedip, error)
    public Reservedfixedip(string name, ReservedfixedipArgs args, CustomResourceOptions? opts = null)
    public Reservedfixedip(String name, ReservedfixedipArgs args)
    public Reservedfixedip(String name, ReservedfixedipArgs args, CustomResourceOptions options)
    
    type: edgecenter:Reservedfixedip
    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 ReservedfixedipArgs
    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 ReservedfixedipArgs
    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 ReservedfixedipArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ReservedfixedipArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ReservedfixedipArgs
    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 reservedfixedipResource = new Edgecenter.Reservedfixedip("reservedfixedipResource", new()
    {
        Type = "string",
        ProjectId = 0,
        InstancePortsThatShareVips = new[]
        {
            "string",
        },
        IsVip = false,
        LastUpdated = "string",
        NetworkId = "string",
        AllowedAddressPairs = new[]
        {
            new Edgecenter.Inputs.ReservedfixedipAllowedAddressPairArgs
            {
                IpAddress = "string",
                MacAddress = "string",
            },
        },
        ProjectName = "string",
        RegionId = 0,
        RegionName = "string",
        ReservedfixedipId = "string",
        SubnetId = "string",
        FixedIpAddress = "string",
    });
    
    example, err := edgecenter.NewReservedfixedip(ctx, "reservedfixedipResource", &edgecenter.ReservedfixedipArgs{
    	Type:      pulumi.String("string"),
    	ProjectId: pulumi.Float64(0),
    	InstancePortsThatShareVips: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	IsVip:       pulumi.Bool(false),
    	LastUpdated: pulumi.String("string"),
    	NetworkId:   pulumi.String("string"),
    	AllowedAddressPairs: edgecenter.ReservedfixedipAllowedAddressPairArray{
    		&edgecenter.ReservedfixedipAllowedAddressPairArgs{
    			IpAddress:  pulumi.String("string"),
    			MacAddress: pulumi.String("string"),
    		},
    	},
    	ProjectName:       pulumi.String("string"),
    	RegionId:          pulumi.Float64(0),
    	RegionName:        pulumi.String("string"),
    	ReservedfixedipId: pulumi.String("string"),
    	SubnetId:          pulumi.String("string"),
    	FixedIpAddress:    pulumi.String("string"),
    })
    
    var reservedfixedipResource = new Reservedfixedip("reservedfixedipResource", ReservedfixedipArgs.builder()
        .type("string")
        .projectId(0)
        .instancePortsThatShareVips("string")
        .isVip(false)
        .lastUpdated("string")
        .networkId("string")
        .allowedAddressPairs(ReservedfixedipAllowedAddressPairArgs.builder()
            .ipAddress("string")
            .macAddress("string")
            .build())
        .projectName("string")
        .regionId(0)
        .regionName("string")
        .reservedfixedipId("string")
        .subnetId("string")
        .fixedIpAddress("string")
        .build());
    
    reservedfixedip_resource = edgecenter.Reservedfixedip("reservedfixedipResource",
        type="string",
        project_id=0,
        instance_ports_that_share_vips=["string"],
        is_vip=False,
        last_updated="string",
        network_id="string",
        allowed_address_pairs=[{
            "ip_address": "string",
            "mac_address": "string",
        }],
        project_name="string",
        region_id=0,
        region_name="string",
        reservedfixedip_id="string",
        subnet_id="string",
        fixed_ip_address="string")
    
    const reservedfixedipResource = new edgecenter.Reservedfixedip("reservedfixedipResource", {
        type: "string",
        projectId: 0,
        instancePortsThatShareVips: ["string"],
        isVip: false,
        lastUpdated: "string",
        networkId: "string",
        allowedAddressPairs: [{
            ipAddress: "string",
            macAddress: "string",
        }],
        projectName: "string",
        regionId: 0,
        regionName: "string",
        reservedfixedipId: "string",
        subnetId: "string",
        fixedIpAddress: "string",
    });
    
    type: edgecenter:Reservedfixedip
    properties:
        allowedAddressPairs:
            - ipAddress: string
              macAddress: string
        fixedIpAddress: string
        instancePortsThatShareVips:
            - string
        isVip: false
        lastUpdated: string
        networkId: string
        projectId: 0
        projectName: string
        regionId: 0
        regionName: string
        reservedfixedipId: string
        subnetId: string
        type: string
    

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

    Type string
    The type of reserved fixed IP. Valid values are 'external', 'subnet', 'anysubnet', and 'ipaddress'. Refer optional parameters description to determine which are required for each type.
    AllowedAddressPairs List<ReservedfixedipAllowedAddressPair>
    Group of IP addresses that share the current IP as VIP.
    FixedIpAddress string
    The IP address that is associated with the reserved IP. Required if 'type' is 'ip_address', computed otherwise.
    InstancePortsThatShareVips List<string>
    instance ports that share a VIP
    IsVip bool
    Flag to determine if the reserved fixed IP should be treated as a Virtual IP (VIP).
    LastUpdated string
    The timestamp of the last update (use with update context).
    NetworkId string
    ID of the network to which the reserved fixed IP is associated. Required if 'type' is 'ipaddress' or 'anysubnet', computed otherwise.
    ProjectId double
    The uuid of the project. Either 'projectid' or 'projectname' must be specified.
    ProjectName string
    The name of the project. Either 'projectid' or 'projectname' must be specified.
    RegionId double
    The uuid of the region. Either 'regionid' or 'regionname' must be specified.
    RegionName string
    The name of the region. Either 'regionid' or 'regionname' must be specified.
    ReservedfixedipId string
    The ID of this resource.
    SubnetId string
    ID of the subnet from which the fixed IP should be reserved. Required if 'type' is 'subnet', computed otherwise.
    Type string
    The type of reserved fixed IP. Valid values are 'external', 'subnet', 'anysubnet', and 'ipaddress'. Refer optional parameters description to determine which are required for each type.
    AllowedAddressPairs []ReservedfixedipAllowedAddressPairArgs
    Group of IP addresses that share the current IP as VIP.
    FixedIpAddress string
    The IP address that is associated with the reserved IP. Required if 'type' is 'ip_address', computed otherwise.
    InstancePortsThatShareVips []string
    instance ports that share a VIP
    IsVip bool
    Flag to determine if the reserved fixed IP should be treated as a Virtual IP (VIP).
    LastUpdated string
    The timestamp of the last update (use with update context).
    NetworkId string
    ID of the network to which the reserved fixed IP is associated. Required if 'type' is 'ipaddress' or 'anysubnet', computed otherwise.
    ProjectId float64
    The uuid of the project. Either 'projectid' or 'projectname' must be specified.
    ProjectName string
    The name of the project. Either 'projectid' or 'projectname' must be specified.
    RegionId float64
    The uuid of the region. Either 'regionid' or 'regionname' must be specified.
    RegionName string
    The name of the region. Either 'regionid' or 'regionname' must be specified.
    ReservedfixedipId string
    The ID of this resource.
    SubnetId string
    ID of the subnet from which the fixed IP should be reserved. Required if 'type' is 'subnet', computed otherwise.
    type String
    The type of reserved fixed IP. Valid values are 'external', 'subnet', 'anysubnet', and 'ipaddress'. Refer optional parameters description to determine which are required for each type.
    allowedAddressPairs List<ReservedfixedipAllowedAddressPair>
    Group of IP addresses that share the current IP as VIP.
    fixedIpAddress String
    The IP address that is associated with the reserved IP. Required if 'type' is 'ip_address', computed otherwise.
    instancePortsThatShareVips List<String>
    instance ports that share a VIP
    isVip Boolean
    Flag to determine if the reserved fixed IP should be treated as a Virtual IP (VIP).
    lastUpdated String
    The timestamp of the last update (use with update context).
    networkId String
    ID of the network to which the reserved fixed IP is associated. Required if 'type' is 'ipaddress' or 'anysubnet', computed otherwise.
    projectId Double
    The uuid of the project. Either 'projectid' or 'projectname' must be specified.
    projectName String
    The name of the project. Either 'projectid' or 'projectname' must be specified.
    regionId Double
    The uuid of the region. Either 'regionid' or 'regionname' must be specified.
    regionName String
    The name of the region. Either 'regionid' or 'regionname' must be specified.
    reservedfixedipId String
    The ID of this resource.
    subnetId String
    ID of the subnet from which the fixed IP should be reserved. Required if 'type' is 'subnet', computed otherwise.
    type string
    The type of reserved fixed IP. Valid values are 'external', 'subnet', 'anysubnet', and 'ipaddress'. Refer optional parameters description to determine which are required for each type.
    allowedAddressPairs ReservedfixedipAllowedAddressPair[]
    Group of IP addresses that share the current IP as VIP.
    fixedIpAddress string
    The IP address that is associated with the reserved IP. Required if 'type' is 'ip_address', computed otherwise.
    instancePortsThatShareVips string[]
    instance ports that share a VIP
    isVip boolean
    Flag to determine if the reserved fixed IP should be treated as a Virtual IP (VIP).
    lastUpdated string
    The timestamp of the last update (use with update context).
    networkId string
    ID of the network to which the reserved fixed IP is associated. Required if 'type' is 'ipaddress' or 'anysubnet', computed otherwise.
    projectId number
    The uuid of the project. Either 'projectid' or 'projectname' must be specified.
    projectName string
    The name of the project. Either 'projectid' or 'projectname' must be specified.
    regionId number
    The uuid of the region. Either 'regionid' or 'regionname' must be specified.
    regionName string
    The name of the region. Either 'regionid' or 'regionname' must be specified.
    reservedfixedipId string
    The ID of this resource.
    subnetId string
    ID of the subnet from which the fixed IP should be reserved. Required if 'type' is 'subnet', computed otherwise.
    type str
    The type of reserved fixed IP. Valid values are 'external', 'subnet', 'anysubnet', and 'ipaddress'. Refer optional parameters description to determine which are required for each type.
    allowed_address_pairs Sequence[ReservedfixedipAllowedAddressPairArgs]
    Group of IP addresses that share the current IP as VIP.
    fixed_ip_address str
    The IP address that is associated with the reserved IP. Required if 'type' is 'ip_address', computed otherwise.
    instance_ports_that_share_vips Sequence[str]
    instance ports that share a VIP
    is_vip bool
    Flag to determine if the reserved fixed IP should be treated as a Virtual IP (VIP).
    last_updated str
    The timestamp of the last update (use with update context).
    network_id str
    ID of the network to which the reserved fixed IP is associated. Required if 'type' is 'ipaddress' or 'anysubnet', computed otherwise.
    project_id float
    The uuid of the project. Either 'projectid' or 'projectname' must be specified.
    project_name str
    The name of the project. Either 'projectid' or 'projectname' must be specified.
    region_id float
    The uuid of the region. Either 'regionid' or 'regionname' must be specified.
    region_name str
    The name of the region. Either 'regionid' or 'regionname' must be specified.
    reservedfixedip_id str
    The ID of this resource.
    subnet_id str
    ID of the subnet from which the fixed IP should be reserved. Required if 'type' is 'subnet', computed otherwise.
    type String
    The type of reserved fixed IP. Valid values are 'external', 'subnet', 'anysubnet', and 'ipaddress'. Refer optional parameters description to determine which are required for each type.
    allowedAddressPairs List<Property Map>
    Group of IP addresses that share the current IP as VIP.
    fixedIpAddress String
    The IP address that is associated with the reserved IP. Required if 'type' is 'ip_address', computed otherwise.
    instancePortsThatShareVips List<String>
    instance ports that share a VIP
    isVip Boolean
    Flag to determine if the reserved fixed IP should be treated as a Virtual IP (VIP).
    lastUpdated String
    The timestamp of the last update (use with update context).
    networkId String
    ID of the network to which the reserved fixed IP is associated. Required if 'type' is 'ipaddress' or 'anysubnet', computed otherwise.
    projectId Number
    The uuid of the project. Either 'projectid' or 'projectname' must be specified.
    projectName String
    The name of the project. Either 'projectid' or 'projectname' must be specified.
    regionId Number
    The uuid of the region. Either 'regionid' or 'regionname' must be specified.
    regionName String
    The name of the region. Either 'regionid' or 'regionname' must be specified.
    reservedfixedipId String
    The ID of this resource.
    subnetId String
    ID of the subnet from which the fixed IP should be reserved. Required if 'type' is 'subnet', computed otherwise.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    PortId string
    ID of the port_id underlying the reserved fixed IP.
    Reservation Dictionary<string, string>
    The status of the reserved fixed IP with the type of the resource and the ID it is attached to
    Status string
    The current status of the reserved fixed IP.
    Id string
    The provider-assigned unique ID for this managed resource.
    PortId string
    ID of the port_id underlying the reserved fixed IP.
    Reservation map[string]string
    The status of the reserved fixed IP with the type of the resource and the ID it is attached to
    Status string
    The current status of the reserved fixed IP.
    id String
    The provider-assigned unique ID for this managed resource.
    portId String
    ID of the port_id underlying the reserved fixed IP.
    reservation Map<String,String>
    The status of the reserved fixed IP with the type of the resource and the ID it is attached to
    status String
    The current status of the reserved fixed IP.
    id string
    The provider-assigned unique ID for this managed resource.
    portId string
    ID of the port_id underlying the reserved fixed IP.
    reservation {[key: string]: string}
    The status of the reserved fixed IP with the type of the resource and the ID it is attached to
    status string
    The current status of the reserved fixed IP.
    id str
    The provider-assigned unique ID for this managed resource.
    port_id str
    ID of the port_id underlying the reserved fixed IP.
    reservation Mapping[str, str]
    The status of the reserved fixed IP with the type of the resource and the ID it is attached to
    status str
    The current status of the reserved fixed IP.
    id String
    The provider-assigned unique ID for this managed resource.
    portId String
    ID of the port_id underlying the reserved fixed IP.
    reservation Map<String>
    The status of the reserved fixed IP with the type of the resource and the ID it is attached to
    status String
    The current status of the reserved fixed IP.

    Look up Existing Reservedfixedip Resource

    Get an existing Reservedfixedip 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?: ReservedfixedipState, opts?: CustomResourceOptions): Reservedfixedip
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allowed_address_pairs: Optional[Sequence[ReservedfixedipAllowedAddressPairArgs]] = None,
            fixed_ip_address: Optional[str] = None,
            instance_ports_that_share_vips: Optional[Sequence[str]] = None,
            is_vip: Optional[bool] = None,
            last_updated: Optional[str] = None,
            network_id: Optional[str] = None,
            port_id: Optional[str] = None,
            project_id: Optional[float] = None,
            project_name: Optional[str] = None,
            region_id: Optional[float] = None,
            region_name: Optional[str] = None,
            reservation: Optional[Mapping[str, str]] = None,
            reservedfixedip_id: Optional[str] = None,
            status: Optional[str] = None,
            subnet_id: Optional[str] = None,
            type: Optional[str] = None) -> Reservedfixedip
    func GetReservedfixedip(ctx *Context, name string, id IDInput, state *ReservedfixedipState, opts ...ResourceOption) (*Reservedfixedip, error)
    public static Reservedfixedip Get(string name, Input<string> id, ReservedfixedipState? state, CustomResourceOptions? opts = null)
    public static Reservedfixedip get(String name, Output<String> id, ReservedfixedipState state, CustomResourceOptions options)
    resources:  _:    type: edgecenter:Reservedfixedip    get:      id: ${id}
    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.
    The following state arguments are supported:
    AllowedAddressPairs List<ReservedfixedipAllowedAddressPair>
    Group of IP addresses that share the current IP as VIP.
    FixedIpAddress string
    The IP address that is associated with the reserved IP. Required if 'type' is 'ip_address', computed otherwise.
    InstancePortsThatShareVips List<string>
    instance ports that share a VIP
    IsVip bool
    Flag to determine if the reserved fixed IP should be treated as a Virtual IP (VIP).
    LastUpdated string
    The timestamp of the last update (use with update context).
    NetworkId string
    ID of the network to which the reserved fixed IP is associated. Required if 'type' is 'ipaddress' or 'anysubnet', computed otherwise.
    PortId string
    ID of the port_id underlying the reserved fixed IP.
    ProjectId double
    The uuid of the project. Either 'projectid' or 'projectname' must be specified.
    ProjectName string
    The name of the project. Either 'projectid' or 'projectname' must be specified.
    RegionId double
    The uuid of the region. Either 'regionid' or 'regionname' must be specified.
    RegionName string
    The name of the region. Either 'regionid' or 'regionname' must be specified.
    Reservation Dictionary<string, string>
    The status of the reserved fixed IP with the type of the resource and the ID it is attached to
    ReservedfixedipId string
    The ID of this resource.
    Status string
    The current status of the reserved fixed IP.
    SubnetId string
    ID of the subnet from which the fixed IP should be reserved. Required if 'type' is 'subnet', computed otherwise.
    Type string
    The type of reserved fixed IP. Valid values are 'external', 'subnet', 'anysubnet', and 'ipaddress'. Refer optional parameters description to determine which are required for each type.
    AllowedAddressPairs []ReservedfixedipAllowedAddressPairArgs
    Group of IP addresses that share the current IP as VIP.
    FixedIpAddress string
    The IP address that is associated with the reserved IP. Required if 'type' is 'ip_address', computed otherwise.
    InstancePortsThatShareVips []string
    instance ports that share a VIP
    IsVip bool
    Flag to determine if the reserved fixed IP should be treated as a Virtual IP (VIP).
    LastUpdated string
    The timestamp of the last update (use with update context).
    NetworkId string
    ID of the network to which the reserved fixed IP is associated. Required if 'type' is 'ipaddress' or 'anysubnet', computed otherwise.
    PortId string
    ID of the port_id underlying the reserved fixed IP.
    ProjectId float64
    The uuid of the project. Either 'projectid' or 'projectname' must be specified.
    ProjectName string
    The name of the project. Either 'projectid' or 'projectname' must be specified.
    RegionId float64
    The uuid of the region. Either 'regionid' or 'regionname' must be specified.
    RegionName string
    The name of the region. Either 'regionid' or 'regionname' must be specified.
    Reservation map[string]string
    The status of the reserved fixed IP with the type of the resource and the ID it is attached to
    ReservedfixedipId string
    The ID of this resource.
    Status string
    The current status of the reserved fixed IP.
    SubnetId string
    ID of the subnet from which the fixed IP should be reserved. Required if 'type' is 'subnet', computed otherwise.
    Type string
    The type of reserved fixed IP. Valid values are 'external', 'subnet', 'anysubnet', and 'ipaddress'. Refer optional parameters description to determine which are required for each type.
    allowedAddressPairs List<ReservedfixedipAllowedAddressPair>
    Group of IP addresses that share the current IP as VIP.
    fixedIpAddress String
    The IP address that is associated with the reserved IP. Required if 'type' is 'ip_address', computed otherwise.
    instancePortsThatShareVips List<String>
    instance ports that share a VIP
    isVip Boolean
    Flag to determine if the reserved fixed IP should be treated as a Virtual IP (VIP).
    lastUpdated String
    The timestamp of the last update (use with update context).
    networkId String
    ID of the network to which the reserved fixed IP is associated. Required if 'type' is 'ipaddress' or 'anysubnet', computed otherwise.
    portId String
    ID of the port_id underlying the reserved fixed IP.
    projectId Double
    The uuid of the project. Either 'projectid' or 'projectname' must be specified.
    projectName String
    The name of the project. Either 'projectid' or 'projectname' must be specified.
    regionId Double
    The uuid of the region. Either 'regionid' or 'regionname' must be specified.
    regionName String
    The name of the region. Either 'regionid' or 'regionname' must be specified.
    reservation Map<String,String>
    The status of the reserved fixed IP with the type of the resource and the ID it is attached to
    reservedfixedipId String
    The ID of this resource.
    status String
    The current status of the reserved fixed IP.
    subnetId String
    ID of the subnet from which the fixed IP should be reserved. Required if 'type' is 'subnet', computed otherwise.
    type String
    The type of reserved fixed IP. Valid values are 'external', 'subnet', 'anysubnet', and 'ipaddress'. Refer optional parameters description to determine which are required for each type.
    allowedAddressPairs ReservedfixedipAllowedAddressPair[]
    Group of IP addresses that share the current IP as VIP.
    fixedIpAddress string
    The IP address that is associated with the reserved IP. Required if 'type' is 'ip_address', computed otherwise.
    instancePortsThatShareVips string[]
    instance ports that share a VIP
    isVip boolean
    Flag to determine if the reserved fixed IP should be treated as a Virtual IP (VIP).
    lastUpdated string
    The timestamp of the last update (use with update context).
    networkId string
    ID of the network to which the reserved fixed IP is associated. Required if 'type' is 'ipaddress' or 'anysubnet', computed otherwise.
    portId string
    ID of the port_id underlying the reserved fixed IP.
    projectId number
    The uuid of the project. Either 'projectid' or 'projectname' must be specified.
    projectName string
    The name of the project. Either 'projectid' or 'projectname' must be specified.
    regionId number
    The uuid of the region. Either 'regionid' or 'regionname' must be specified.
    regionName string
    The name of the region. Either 'regionid' or 'regionname' must be specified.
    reservation {[key: string]: string}
    The status of the reserved fixed IP with the type of the resource and the ID it is attached to
    reservedfixedipId string
    The ID of this resource.
    status string
    The current status of the reserved fixed IP.
    subnetId string
    ID of the subnet from which the fixed IP should be reserved. Required if 'type' is 'subnet', computed otherwise.
    type string
    The type of reserved fixed IP. Valid values are 'external', 'subnet', 'anysubnet', and 'ipaddress'. Refer optional parameters description to determine which are required for each type.
    allowed_address_pairs Sequence[ReservedfixedipAllowedAddressPairArgs]
    Group of IP addresses that share the current IP as VIP.
    fixed_ip_address str
    The IP address that is associated with the reserved IP. Required if 'type' is 'ip_address', computed otherwise.
    instance_ports_that_share_vips Sequence[str]
    instance ports that share a VIP
    is_vip bool
    Flag to determine if the reserved fixed IP should be treated as a Virtual IP (VIP).
    last_updated str
    The timestamp of the last update (use with update context).
    network_id str
    ID of the network to which the reserved fixed IP is associated. Required if 'type' is 'ipaddress' or 'anysubnet', computed otherwise.
    port_id str
    ID of the port_id underlying the reserved fixed IP.
    project_id float
    The uuid of the project. Either 'projectid' or 'projectname' must be specified.
    project_name str
    The name of the project. Either 'projectid' or 'projectname' must be specified.
    region_id float
    The uuid of the region. Either 'regionid' or 'regionname' must be specified.
    region_name str
    The name of the region. Either 'regionid' or 'regionname' must be specified.
    reservation Mapping[str, str]
    The status of the reserved fixed IP with the type of the resource and the ID it is attached to
    reservedfixedip_id str
    The ID of this resource.
    status str
    The current status of the reserved fixed IP.
    subnet_id str
    ID of the subnet from which the fixed IP should be reserved. Required if 'type' is 'subnet', computed otherwise.
    type str
    The type of reserved fixed IP. Valid values are 'external', 'subnet', 'anysubnet', and 'ipaddress'. Refer optional parameters description to determine which are required for each type.
    allowedAddressPairs List<Property Map>
    Group of IP addresses that share the current IP as VIP.
    fixedIpAddress String
    The IP address that is associated with the reserved IP. Required if 'type' is 'ip_address', computed otherwise.
    instancePortsThatShareVips List<String>
    instance ports that share a VIP
    isVip Boolean
    Flag to determine if the reserved fixed IP should be treated as a Virtual IP (VIP).
    lastUpdated String
    The timestamp of the last update (use with update context).
    networkId String
    ID of the network to which the reserved fixed IP is associated. Required if 'type' is 'ipaddress' or 'anysubnet', computed otherwise.
    portId String
    ID of the port_id underlying the reserved fixed IP.
    projectId Number
    The uuid of the project. Either 'projectid' or 'projectname' must be specified.
    projectName String
    The name of the project. Either 'projectid' or 'projectname' must be specified.
    regionId Number
    The uuid of the region. Either 'regionid' or 'regionname' must be specified.
    regionName String
    The name of the region. Either 'regionid' or 'regionname' must be specified.
    reservation Map<String>
    The status of the reserved fixed IP with the type of the resource and the ID it is attached to
    reservedfixedipId String
    The ID of this resource.
    status String
    The current status of the reserved fixed IP.
    subnetId String
    ID of the subnet from which the fixed IP should be reserved. Required if 'type' is 'subnet', computed otherwise.
    type String
    The type of reserved fixed IP. Valid values are 'external', 'subnet', 'anysubnet', and 'ipaddress'. Refer optional parameters description to determine which are required for each type.

    Supporting Types

    ReservedfixedipAllowedAddressPair, ReservedfixedipAllowedAddressPairArgs

    IpAddress string
    MacAddress string
    IpAddress string
    MacAddress string
    ipAddress String
    macAddress String
    ipAddress string
    macAddress string
    ipAddress String
    macAddress String

    Import

    import using <project_id>:<region_id>:<reservedfixedip_id> format

    $ pulumi import edgecenter:index/reservedfixedip:Reservedfixedip reservedfixedip1 1:6:447d2959-8ae0-4ca0-8d47-9f050a3637d7
    

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

    Package Details

    Repository
    edgecenter edge-center/terraform-provider-edgecenter
    License
    Notes
    This Pulumi package is based on the edgecenter Terraform Provider.
    edgecenter logo
    edgecenter 0.8.0 published on Wednesday, Apr 30, 2025 by edge-center