1. Packages
  2. DigitalOcean Provider
  3. API Docs
  4. ReservedIpv6
DigitalOcean v4.41.0 published on Wednesday, Mar 26, 2025 by Pulumi

digitalocean.ReservedIpv6

Explore with Pulumi AI

digitalocean logo
DigitalOcean v4.41.0 published on Wednesday, Mar 26, 2025 by Pulumi

    Provides a DigitalOcean reserved IPv6 to represent a publicly-accessible static IPv6 addresses that can be mapped to one of your Droplets.

    NOTE: Reserved IPv6s can be assigned to a Droplet using digitalocean.ReservedIpv6Assignment resource only.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as digitalocean from "@pulumi/digitalocean";
    
    const foobar = new digitalocean.ReservedIpv6("foobar", {regionSlug: "nyc3"});
    
    import pulumi
    import pulumi_digitalocean as digitalocean
    
    foobar = digitalocean.ReservedIpv6("foobar", region_slug="nyc3")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-digitalocean/sdk/v4/go/digitalocean"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := digitalocean.NewReservedIpv6(ctx, "foobar", &digitalocean.ReservedIpv6Args{
    			RegionSlug: pulumi.String("nyc3"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using DigitalOcean = Pulumi.DigitalOcean;
    
    return await Deployment.RunAsync(() => 
    {
        var foobar = new DigitalOcean.ReservedIpv6("foobar", new()
        {
            RegionSlug = "nyc3",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.digitalocean.ReservedIpv6;
    import com.pulumi.digitalocean.ReservedIpv6Args;
    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 foobar = new ReservedIpv6("foobar", ReservedIpv6Args.builder()
                .regionSlug("nyc3")
                .build());
    
        }
    }
    
    resources:
      foobar:
        type: digitalocean:ReservedIpv6
        properties:
          regionSlug: nyc3
    

    Create ReservedIpv6 Resource

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

    Constructor syntax

    new ReservedIpv6(name: string, args: ReservedIpv6Args, opts?: CustomResourceOptions);
    @overload
    def ReservedIpv6(resource_name: str,
                     args: ReservedIpv6Args,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ReservedIpv6(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     region_slug: Optional[str] = None,
                     droplet_id: Optional[int] = None,
                     ip: Optional[str] = None)
    func NewReservedIpv6(ctx *Context, name string, args ReservedIpv6Args, opts ...ResourceOption) (*ReservedIpv6, error)
    public ReservedIpv6(string name, ReservedIpv6Args args, CustomResourceOptions? opts = null)
    public ReservedIpv6(String name, ReservedIpv6Args args)
    public ReservedIpv6(String name, ReservedIpv6Args args, CustomResourceOptions options)
    
    type: digitalocean:ReservedIpv6
    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 ReservedIpv6Args
    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 ReservedIpv6Args
    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 ReservedIpv6Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ReservedIpv6Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ReservedIpv6Args
    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 reservedIpv6Resource = new DigitalOcean.ReservedIpv6("reservedIpv6Resource", new()
    {
        RegionSlug = "string",
        DropletId = 0,
        Ip = "string",
    });
    
    example, err := digitalocean.NewReservedIpv6(ctx, "reservedIpv6Resource", &digitalocean.ReservedIpv6Args{
    	RegionSlug: pulumi.String("string"),
    	DropletId:  pulumi.Int(0),
    	Ip:         pulumi.String("string"),
    })
    
    var reservedIpv6Resource = new ReservedIpv6("reservedIpv6Resource", ReservedIpv6Args.builder()
        .regionSlug("string")
        .dropletId(0)
        .ip("string")
        .build());
    
    reserved_ipv6_resource = digitalocean.ReservedIpv6("reservedIpv6Resource",
        region_slug="string",
        droplet_id=0,
        ip="string")
    
    const reservedIpv6Resource = new digitalocean.ReservedIpv6("reservedIpv6Resource", {
        regionSlug: "string",
        dropletId: 0,
        ip: "string",
    });
    
    type: digitalocean:ReservedIpv6
    properties:
        dropletId: 0
        ip: string
        regionSlug: string
    

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

    RegionSlug string
    The region that the reserved IPv6 needs to be reserved to.
    DropletId int
    Ip string
    RegionSlug string
    The region that the reserved IPv6 needs to be reserved to.
    DropletId int
    Ip string
    regionSlug String
    The region that the reserved IPv6 needs to be reserved to.
    dropletId Integer
    ip String
    regionSlug string
    The region that the reserved IPv6 needs to be reserved to.
    dropletId number
    ip string
    region_slug str
    The region that the reserved IPv6 needs to be reserved to.
    droplet_id int
    ip str
    regionSlug String
    The region that the reserved IPv6 needs to be reserved to.
    dropletId Number
    ip String

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Urn string
    the uniform resource name for the reserved ipv6
    Id string
    The provider-assigned unique ID for this managed resource.
    Urn string
    the uniform resource name for the reserved ipv6
    id String
    The provider-assigned unique ID for this managed resource.
    urn String
    the uniform resource name for the reserved ipv6
    id string
    The provider-assigned unique ID for this managed resource.
    urn string
    the uniform resource name for the reserved ipv6
    id str
    The provider-assigned unique ID for this managed resource.
    urn str
    the uniform resource name for the reserved ipv6
    id String
    The provider-assigned unique ID for this managed resource.
    urn String
    the uniform resource name for the reserved ipv6

    Look up Existing ReservedIpv6 Resource

    Get an existing ReservedIpv6 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?: ReservedIpv6State, opts?: CustomResourceOptions): ReservedIpv6
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            droplet_id: Optional[int] = None,
            ip: Optional[str] = None,
            region_slug: Optional[str] = None,
            urn: Optional[str] = None) -> ReservedIpv6
    func GetReservedIpv6(ctx *Context, name string, id IDInput, state *ReservedIpv6State, opts ...ResourceOption) (*ReservedIpv6, error)
    public static ReservedIpv6 Get(string name, Input<string> id, ReservedIpv6State? state, CustomResourceOptions? opts = null)
    public static ReservedIpv6 get(String name, Output<String> id, ReservedIpv6State state, CustomResourceOptions options)
    resources:  _:    type: digitalocean:ReservedIpv6    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:
    DropletId int
    Ip string
    RegionSlug string
    The region that the reserved IPv6 needs to be reserved to.
    Urn string
    the uniform resource name for the reserved ipv6
    DropletId int
    Ip string
    RegionSlug string
    The region that the reserved IPv6 needs to be reserved to.
    Urn string
    the uniform resource name for the reserved ipv6
    dropletId Integer
    ip String
    regionSlug String
    The region that the reserved IPv6 needs to be reserved to.
    urn String
    the uniform resource name for the reserved ipv6
    dropletId number
    ip string
    regionSlug string
    The region that the reserved IPv6 needs to be reserved to.
    urn string
    the uniform resource name for the reserved ipv6
    droplet_id int
    ip str
    region_slug str
    The region that the reserved IPv6 needs to be reserved to.
    urn str
    the uniform resource name for the reserved ipv6
    dropletId Number
    ip String
    regionSlug String
    The region that the reserved IPv6 needs to be reserved to.
    urn String
    the uniform resource name for the reserved ipv6

    Import

    Reserved IPv6s can be imported using the ip, e.g.

    $ pulumi import digitalocean:index/reservedIpv6:ReservedIpv6 myip
    

    2409:40d0:fa:27dd:9b24:7074:7b85:eee6

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

    Package Details

    Repository
    DigitalOcean pulumi/pulumi-digitalocean
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the digitalocean Terraform Provider.
    digitalocean logo
    DigitalOcean v4.41.0 published on Wednesday, Mar 26, 2025 by Pulumi