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

digitalocean.ReservedIpv6Assignment

Explore with Pulumi AI

Provides a resource for assigning an existing DigitalOcean reserved IPv6 to a Droplet. This makes it easy to provision reserved IPv6 addresses that are not tied to the lifecycle of your Droplet.

Create ReservedIpv6Assignment Resource

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

Constructor syntax

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

@overload
def ReservedIpv6Assignment(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           droplet_id: Optional[int] = None,
                           ip: Optional[str] = None)
func NewReservedIpv6Assignment(ctx *Context, name string, args ReservedIpv6AssignmentArgs, opts ...ResourceOption) (*ReservedIpv6Assignment, error)
public ReservedIpv6Assignment(string name, ReservedIpv6AssignmentArgs args, CustomResourceOptions? opts = null)
public ReservedIpv6Assignment(String name, ReservedIpv6AssignmentArgs args)
public ReservedIpv6Assignment(String name, ReservedIpv6AssignmentArgs args, CustomResourceOptions options)
type: digitalocean:ReservedIpv6Assignment
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 This property is required. ReservedIpv6AssignmentArgs
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 This property is required. ReservedIpv6AssignmentArgs
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 This property is required. ReservedIpv6AssignmentArgs
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 This property is required. ReservedIpv6AssignmentArgs
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. ReservedIpv6AssignmentArgs
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 reservedIpv6AssignmentResource = new DigitalOcean.ReservedIpv6Assignment("reservedIpv6AssignmentResource", new()
{
    DropletId = 0,
    Ip = "string",
});
Copy
example, err := digitalocean.NewReservedIpv6Assignment(ctx, "reservedIpv6AssignmentResource", &digitalocean.ReservedIpv6AssignmentArgs{
	DropletId: pulumi.Int(0),
	Ip:        pulumi.String("string"),
})
Copy
var reservedIpv6AssignmentResource = new ReservedIpv6Assignment("reservedIpv6AssignmentResource", ReservedIpv6AssignmentArgs.builder()
    .dropletId(0)
    .ip("string")
    .build());
Copy
reserved_ipv6_assignment_resource = digitalocean.ReservedIpv6Assignment("reservedIpv6AssignmentResource",
    droplet_id=0,
    ip="string")
Copy
const reservedIpv6AssignmentResource = new digitalocean.ReservedIpv6Assignment("reservedIpv6AssignmentResource", {
    dropletId: 0,
    ip: "string",
});
Copy
type: digitalocean:ReservedIpv6Assignment
properties:
    dropletId: 0
    ip: string
Copy

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

DropletId
This property is required.
Changes to this property will trigger replacement.
int
The ID of Droplet that the reserved IPv6 will be assigned to.
Ip
This property is required.
Changes to this property will trigger replacement.
string
The reserved IPv6 to assign to the Droplet.
DropletId
This property is required.
Changes to this property will trigger replacement.
int
The ID of Droplet that the reserved IPv6 will be assigned to.
Ip
This property is required.
Changes to this property will trigger replacement.
string
The reserved IPv6 to assign to the Droplet.
dropletId
This property is required.
Changes to this property will trigger replacement.
Integer
The ID of Droplet that the reserved IPv6 will be assigned to.
ip
This property is required.
Changes to this property will trigger replacement.
String
The reserved IPv6 to assign to the Droplet.
dropletId
This property is required.
Changes to this property will trigger replacement.
number
The ID of Droplet that the reserved IPv6 will be assigned to.
ip
This property is required.
Changes to this property will trigger replacement.
string
The reserved IPv6 to assign to the Droplet.
droplet_id
This property is required.
Changes to this property will trigger replacement.
int
The ID of Droplet that the reserved IPv6 will be assigned to.
ip
This property is required.
Changes to this property will trigger replacement.
str
The reserved IPv6 to assign to the Droplet.
dropletId
This property is required.
Changes to this property will trigger replacement.
Number
The ID of Droplet that the reserved IPv6 will be assigned to.
ip
This property is required.
Changes to this property will trigger replacement.
String
The reserved IPv6 to assign to the Droplet.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing ReservedIpv6Assignment Resource

Get an existing ReservedIpv6Assignment 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?: ReservedIpv6AssignmentState, opts?: CustomResourceOptions): ReservedIpv6Assignment
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        droplet_id: Optional[int] = None,
        ip: Optional[str] = None) -> ReservedIpv6Assignment
func GetReservedIpv6Assignment(ctx *Context, name string, id IDInput, state *ReservedIpv6AssignmentState, opts ...ResourceOption) (*ReservedIpv6Assignment, error)
public static ReservedIpv6Assignment Get(string name, Input<string> id, ReservedIpv6AssignmentState? state, CustomResourceOptions? opts = null)
public static ReservedIpv6Assignment get(String name, Output<String> id, ReservedIpv6AssignmentState state, CustomResourceOptions options)
resources:  _:    type: digitalocean:ReservedIpv6Assignment    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:
DropletId Changes to this property will trigger replacement. int
The ID of Droplet that the reserved IPv6 will be assigned to.
Ip Changes to this property will trigger replacement. string
The reserved IPv6 to assign to the Droplet.
DropletId Changes to this property will trigger replacement. int
The ID of Droplet that the reserved IPv6 will be assigned to.
Ip Changes to this property will trigger replacement. string
The reserved IPv6 to assign to the Droplet.
dropletId Changes to this property will trigger replacement. Integer
The ID of Droplet that the reserved IPv6 will be assigned to.
ip Changes to this property will trigger replacement. String
The reserved IPv6 to assign to the Droplet.
dropletId Changes to this property will trigger replacement. number
The ID of Droplet that the reserved IPv6 will be assigned to.
ip Changes to this property will trigger replacement. string
The reserved IPv6 to assign to the Droplet.
droplet_id Changes to this property will trigger replacement. int
The ID of Droplet that the reserved IPv6 will be assigned to.
ip Changes to this property will trigger replacement. str
The reserved IPv6 to assign to the Droplet.
dropletId Changes to this property will trigger replacement. Number
The ID of Droplet that the reserved IPv6 will be assigned to.
ip Changes to this property will trigger replacement. String
The reserved IPv6 to assign to the Droplet.

Import

Reserved IPv6 assignments can be imported using the reserved IPv6 itself and the id of

the Droplet joined with a comma. For example:

$ pulumi import digitalocean:index/reservedIpv6Assignment:ReservedIpv6Assignment foobar 2409:40d0:fa:27dd:9b24:7074:7b85:eee6,123456
Copy

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.