@ediri/vultr
Version:
A Pulumi package for creating and managing Vultr cloud resources.
81 lines (80 loc) • 2.88 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* 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.
*/
export declare class ReverseIpv6 extends pulumi.CustomResource {
/**
* Get an existing ReverseIpv6 resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ReverseIpv6State, opts?: pulumi.CustomResourceOptions): ReverseIpv6;
/**
* Returns true if the given object is an instance of ReverseIpv6. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is ReverseIpv6;
/**
* The ID of the server you want to set an IPv6
* reverse DNS record for.
*/
readonly instanceId: pulumi.Output<string>;
/**
* The IPv6 address used in the reverse DNS record.
*/
readonly ip: pulumi.Output<string>;
/**
* The hostname used in the IPv6 reverse DNS record.
*/
readonly reverse: pulumi.Output<string>;
/**
* Create a ReverseIpv6 resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: ReverseIpv6Args, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering ReverseIpv6 resources.
*/
export interface ReverseIpv6State {
/**
* The ID of the server you want to set an IPv6
* reverse DNS record for.
*/
instanceId?: pulumi.Input<string>;
/**
* The IPv6 address used in the reverse DNS record.
*/
ip?: pulumi.Input<string>;
/**
* The hostname used in the IPv6 reverse DNS record.
*/
reverse?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a ReverseIpv6 resource.
*/
export interface ReverseIpv6Args {
/**
* The ID of the server you want to set an IPv6
* reverse DNS record for.
*/
instanceId: pulumi.Input<string>;
/**
* The IPv6 address used in the reverse DNS record.
*/
ip: pulumi.Input<string>;
/**
* The hostname used in the IPv6 reverse DNS record.
*/
reverse: pulumi.Input<string>;
}