import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Attach an IPv6 block to a VRack. * * ## Import * * Attachment of an IPv6 block and a VRack can be imported using the `service_name` (vRack identifier) and the `block` (IPv6 block), separated by "," E.g., * * bash * * ```sh * $ pulumi import ovh:Vrack/ipV6:IpV6 myattach "," * ``` */ export declare class IpV6 extends pulumi.CustomResource { /** * Get an existing IpV6 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, state?: IpV6State, opts?: pulumi.CustomResourceOptions): IpV6; /** * Returns true if the given object is an instance of IpV6. 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 IpV6; /** * Your IPv6 block. */ readonly block: pulumi.Output; /** * Bridged subrange configuration. */ readonly bridgedSubrange: pulumi.Output; /** * The IPv6 block. */ readonly ipv6: pulumi.Output; /** * The region in which the block is routed. */ readonly region: pulumi.Output; /** * The internal name of your vrack */ readonly serviceName: pulumi.Output; /** * Create a IpV6 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: IpV6Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering IpV6 resources. */ export interface IpV6State { /** * Your IPv6 block. */ block?: pulumi.Input; /** * Bridged subrange configuration. */ bridgedSubrange?: pulumi.Input; /** * The IPv6 block. */ ipv6?: pulumi.Input; /** * The region in which the block is routed. */ region?: pulumi.Input; /** * The internal name of your vrack */ serviceName?: pulumi.Input; } /** * The set of arguments for constructing a IpV6 resource. */ export interface IpV6Args { /** * Your IPv6 block. */ block: pulumi.Input; /** * Bridged subrange configuration. */ bridgedSubrange?: pulumi.Input; /** * The internal name of your vrack */ serviceName: pulumi.Input; }