ovh.Vrack.IpV6
Explore with Pulumi AI
Attach an IPv6 block to a VRack.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ovh from "@ovhcloud/pulumi-ovh";
const vrackBlock = new ovh.vrack.IpV6("vrackBlock", {
block: "<ipv6 block>",
serviceName: "<vRack service name>",
});
import pulumi
import pulumi_ovh as ovh
vrack_block = ovh.vrack.IpV6("vrackBlock",
block="<ipv6 block>",
service_name="<vRack service name>")
package main
import (
"github.com/ovh/pulumi-ovh/sdk/v2/go/ovh/vrack"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vrack.NewIpV6(ctx, "vrackBlock", &vrack.IpV6Args{
Block: pulumi.String("<ipv6 block>"),
ServiceName: pulumi.String("<vRack service name>"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ovh = Pulumi.Ovh;
return await Deployment.RunAsync(() =>
{
var vrackBlock = new Ovh.Vrack.IpV6("vrackBlock", new()
{
Block = "<ipv6 block>",
ServiceName = "<vRack service name>",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ovh.Vrack.IpV6;
import com.pulumi.ovh.Vrack.IpV6Args;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var vrackBlock = new IpV6("vrackBlock", IpV6Args.builder()
.block("<ipv6 block>")
.serviceName("<vRack service name>")
.build());
}
}
resources:
vrackBlock:
type: ovh:Vrack:IpV6
properties:
block: <ipv6 block>
serviceName: <vRack service name>
Create IpV6 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IpV6(name: string, args: IpV6Args, opts?: CustomResourceOptions);
@overload
def IpV6(resource_name: str,
args: IpV6Args,
opts: Optional[ResourceOptions] = None)
@overload
def IpV6(resource_name: str,
opts: Optional[ResourceOptions] = None,
block: Optional[str] = None,
service_name: Optional[str] = None)
func NewIpV6(ctx *Context, name string, args IpV6Args, opts ...ResourceOption) (*IpV6, error)
public IpV6(string name, IpV6Args args, CustomResourceOptions? opts = null)
type: ovh:Vrack:IpV6
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args IpV6Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args IpV6Args
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args IpV6Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IpV6Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IpV6Args
- 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 ipV6Resource = new Ovh.Vrack.IpV6("ipV6Resource", new()
{
Block = "string",
ServiceName = "string",
});
example, err := Vrack.NewIpV6(ctx, "ipV6Resource", &Vrack.IpV6Args{
Block: pulumi.String("string"),
ServiceName: pulumi.String("string"),
})
var ipV6Resource = new IpV6("ipV6Resource", IpV6Args.builder()
.block("string")
.serviceName("string")
.build());
ip_v6_resource = ovh.vrack.IpV6("ipV6Resource",
block="string",
service_name="string")
const ipV6Resource = new ovh.vrack.IpV6("ipV6Resource", {
block: "string",
serviceName: "string",
});
type: ovh:Vrack:IpV6
properties:
block: string
serviceName: string
IpV6 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 IpV6 resource accepts the following input properties:
- Block string
- Your IPv6 block.
- Service
Name string - The internal name of your vrack
- Block string
- Your IPv6 block.
- Service
Name string - The internal name of your vrack
- block String
- Your IPv6 block.
- service
Name String - The internal name of your vrack
- block string
- Your IPv6 block.
- service
Name string - The internal name of your vrack
- block str
- Your IPv6 block.
- service_
name str - The internal name of your vrack
- block String
- Your IPv6 block.
- service
Name String - The internal name of your vrack
Outputs
All input properties are implicitly available as output properties. Additionally, the IpV6 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 IpV6 Resource
Get an existing IpV6 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?: IpV6State, opts?: CustomResourceOptions): IpV6
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
block: Optional[str] = None,
service_name: Optional[str] = None) -> IpV6
func GetIpV6(ctx *Context, name string, id IDInput, state *IpV6State, opts ...ResourceOption) (*IpV6, error)
public static IpV6 Get(string name, Input<string> id, IpV6State? state, CustomResourceOptions? opts = null)
public static IpV6 get(String name, Output<String> id, IpV6State state, CustomResourceOptions options)
resources: _: type: ovh:Vrack:IpV6 get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Block string
- Your IPv6 block.
- Service
Name string - The internal name of your vrack
- Block string
- Your IPv6 block.
- Service
Name string - The internal name of your vrack
- block String
- Your IPv6 block.
- service
Name String - The internal name of your vrack
- block string
- Your IPv6 block.
- service
Name string - The internal name of your vrack
- block str
- Your IPv6 block.
- service_
name str - The internal name of your vrack
- block String
- Your IPv6 block.
- service
Name String - The internal name of your 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
$ pulumi import ovh:Vrack/ipV6:IpV6 myattach "<service_name>,<block>"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ovh ovh/pulumi-ovh
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ovh
Terraform Provider.