import * as pulumi from "@pulumi/pulumi"; /** * Route a subrange of your IP v6 block into your vrack. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const vrackRoutedSubrange = new ovh.VrackIpv6RoutedSubrange("vrack_routed_subrange", { * serviceName: "", * block: "", * routedSubrange: "", * nexthop: "", * }); * ``` * * ## Import * * Routing of an subrange into your vRack can be imported using the `service_name` (vRack identifier), the `block` (IPv6 block) and the `routed_subrange (IPv6 block)`, separated by "," E.g., * * bash * * ```sh * $ pulumi import ovh:index/vrackIpv6RoutedSubrange:VrackIpv6RoutedSubrange myroutedsubrange ",," * ``` */ export declare class VrackIpv6RoutedSubrange extends pulumi.CustomResource { /** * Get an existing VrackIpv6RoutedSubrange 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?: VrackIpv6RoutedSubrangeState, opts?: pulumi.CustomResourceOptions): VrackIpv6RoutedSubrange; /** * Returns true if the given object is an instance of VrackIpv6RoutedSubrange. 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 VrackIpv6RoutedSubrange; /** * Your IPv6 block. */ readonly block: pulumi.Output; /** * Next-hop IPv6 address (e.g., 2001:41d0:1:1994::1) */ readonly nexthop: pulumi.Output; /** * The subrange to route into your vRack, IPv6 CIDR notation (e.g., 2001:41d0::/128) */ readonly routedSubrange: pulumi.Output; /** * The internal name of your vrack */ readonly serviceName: pulumi.Output; /** * Create a VrackIpv6RoutedSubrange 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: VrackIpv6RoutedSubrangeArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering VrackIpv6RoutedSubrange resources. */ export interface VrackIpv6RoutedSubrangeState { /** * Your IPv6 block. */ block?: pulumi.Input; /** * Next-hop IPv6 address (e.g., 2001:41d0:1:1994::1) */ nexthop?: pulumi.Input; /** * The subrange to route into your vRack, IPv6 CIDR notation (e.g., 2001:41d0::/128) */ routedSubrange?: pulumi.Input; /** * The internal name of your vrack */ serviceName?: pulumi.Input; } /** * The set of arguments for constructing a VrackIpv6RoutedSubrange resource. */ export interface VrackIpv6RoutedSubrangeArgs { /** * Your IPv6 block. */ block: pulumi.Input; /** * Next-hop IPv6 address (e.g., 2001:41d0:1:1994::1) */ nexthop: pulumi.Input; /** * The subrange to route into your vRack, IPv6 CIDR notation (e.g., 2001:41d0::/128) */ routedSubrange: pulumi.Input; /** * The internal name of your vrack */ serviceName: pulumi.Input; }