1. Packages
  2. Vultr
  3. API Docs
  4. ReverseIpv6
Vultr v2.23.1 published on Tuesday, Dec 10, 2024 by dirien

vultr.ReverseIpv6

Explore with Pulumi AI

Provides a Vultr Reverse IPv6 resource. This can be used to create, read, modify, and delete reverse DNS records for IPv6 addresses. Upon success, DNS changes may take 6-12 hours to become active.

Create ReverseIpv6 Resource

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

Constructor syntax

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

@overload
def ReverseIpv6(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                instance_id: Optional[str] = None,
                ip: Optional[str] = None,
                reverse: Optional[str] = None)
func NewReverseIpv6(ctx *Context, name string, args ReverseIpv6Args, opts ...ResourceOption) (*ReverseIpv6, error)
public ReverseIpv6(string name, ReverseIpv6Args args, CustomResourceOptions? opts = null)
public ReverseIpv6(String name, ReverseIpv6Args args)
public ReverseIpv6(String name, ReverseIpv6Args args, CustomResourceOptions options)
type: vultr:ReverseIpv6
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. ReverseIpv6Args
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. ReverseIpv6Args
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. ReverseIpv6Args
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. ReverseIpv6Args
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. ReverseIpv6Args
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 reverseIpv6Resource = new Vultr.ReverseIpv6("reverseIpv6Resource", new()
{
    InstanceId = "string",
    Ip = "string",
    Reverse = "string",
});
Copy
example, err := vultr.NewReverseIpv6(ctx, "reverseIpv6Resource", &vultr.ReverseIpv6Args{
	InstanceId: pulumi.String("string"),
	Ip:         pulumi.String("string"),
	Reverse:    pulumi.String("string"),
})
Copy
var reverseIpv6Resource = new ReverseIpv6("reverseIpv6Resource", ReverseIpv6Args.builder()
    .instanceId("string")
    .ip("string")
    .reverse("string")
    .build());
Copy
reverse_ipv6_resource = vultr.ReverseIpv6("reverseIpv6Resource",
    instance_id="string",
    ip="string",
    reverse="string")
Copy
const reverseIpv6Resource = new vultr.ReverseIpv6("reverseIpv6Resource", {
    instanceId: "string",
    ip: "string",
    reverse: "string",
});
Copy
type: vultr:ReverseIpv6
properties:
    instanceId: string
    ip: string
    reverse: string
Copy

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

InstanceId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the server you want to set an IPv6 reverse DNS record for.
Ip
This property is required.
Changes to this property will trigger replacement.
string
The IPv6 address used in the reverse DNS record.
Reverse
This property is required.
Changes to this property will trigger replacement.
string
The hostname used in the IPv6 reverse DNS record.
InstanceId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the server you want to set an IPv6 reverse DNS record for.
Ip
This property is required.
Changes to this property will trigger replacement.
string
The IPv6 address used in the reverse DNS record.
Reverse
This property is required.
Changes to this property will trigger replacement.
string
The hostname used in the IPv6 reverse DNS record.
instanceId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the server you want to set an IPv6 reverse DNS record for.
ip
This property is required.
Changes to this property will trigger replacement.
String
The IPv6 address used in the reverse DNS record.
reverse
This property is required.
Changes to this property will trigger replacement.
String
The hostname used in the IPv6 reverse DNS record.
instanceId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the server you want to set an IPv6 reverse DNS record for.
ip
This property is required.
Changes to this property will trigger replacement.
string
The IPv6 address used in the reverse DNS record.
reverse
This property is required.
Changes to this property will trigger replacement.
string
The hostname used in the IPv6 reverse DNS record.
instance_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the server you want to set an IPv6 reverse DNS record for.
ip
This property is required.
Changes to this property will trigger replacement.
str
The IPv6 address used in the reverse DNS record.
reverse
This property is required.
Changes to this property will trigger replacement.
str
The hostname used in the IPv6 reverse DNS record.
instanceId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the server you want to set an IPv6 reverse DNS record for.
ip
This property is required.
Changes to this property will trigger replacement.
String
The IPv6 address used in the reverse DNS record.
reverse
This property is required.
Changes to this property will trigger replacement.
String
The hostname used in the IPv6 reverse DNS record.

Outputs

All input properties are implicitly available as output properties. Additionally, the ReverseIpv6 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 ReverseIpv6 Resource

Get an existing ReverseIpv6 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?: ReverseIpv6State, opts?: CustomResourceOptions): ReverseIpv6
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        instance_id: Optional[str] = None,
        ip: Optional[str] = None,
        reverse: Optional[str] = None) -> ReverseIpv6
func GetReverseIpv6(ctx *Context, name string, id IDInput, state *ReverseIpv6State, opts ...ResourceOption) (*ReverseIpv6, error)
public static ReverseIpv6 Get(string name, Input<string> id, ReverseIpv6State? state, CustomResourceOptions? opts = null)
public static ReverseIpv6 get(String name, Output<String> id, ReverseIpv6State state, CustomResourceOptions options)
resources:  _:    type: vultr:ReverseIpv6    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:
InstanceId Changes to this property will trigger replacement. string
The ID of the server you want to set an IPv6 reverse DNS record for.
Ip Changes to this property will trigger replacement. string
The IPv6 address used in the reverse DNS record.
Reverse Changes to this property will trigger replacement. string
The hostname used in the IPv6 reverse DNS record.
InstanceId Changes to this property will trigger replacement. string
The ID of the server you want to set an IPv6 reverse DNS record for.
Ip Changes to this property will trigger replacement. string
The IPv6 address used in the reverse DNS record.
Reverse Changes to this property will trigger replacement. string
The hostname used in the IPv6 reverse DNS record.
instanceId Changes to this property will trigger replacement. String
The ID of the server you want to set an IPv6 reverse DNS record for.
ip Changes to this property will trigger replacement. String
The IPv6 address used in the reverse DNS record.
reverse Changes to this property will trigger replacement. String
The hostname used in the IPv6 reverse DNS record.
instanceId Changes to this property will trigger replacement. string
The ID of the server you want to set an IPv6 reverse DNS record for.
ip Changes to this property will trigger replacement. string
The IPv6 address used in the reverse DNS record.
reverse Changes to this property will trigger replacement. string
The hostname used in the IPv6 reverse DNS record.
instance_id Changes to this property will trigger replacement. str
The ID of the server you want to set an IPv6 reverse DNS record for.
ip Changes to this property will trigger replacement. str
The IPv6 address used in the reverse DNS record.
reverse Changes to this property will trigger replacement. str
The hostname used in the IPv6 reverse DNS record.
instanceId Changes to this property will trigger replacement. String
The ID of the server you want to set an IPv6 reverse DNS record for.
ip Changes to this property will trigger replacement. String
The IPv6 address used in the reverse DNS record.
reverse Changes to this property will trigger replacement. String
The hostname used in the IPv6 reverse DNS record.

Package Details

Repository
vultr dirien/pulumi-vultr
License
Apache-2.0
Notes
This Pulumi package is based on the vultr Terraform Provider.