1. Packages
  2. OVH
  3. API Docs
  4. Vrack
  5. OVHcloudConnect
OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud

ovh.Vrack.OVHcloudConnect

Explore with Pulumi AI

ovh logo
OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud

    Attach an OVH Cloud Connect to the vrack.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ovh from "@ovhcloud/pulumi-ovh";
    
    const vrackOvhcloudconnect = new ovh.vrack.OVHcloudConnect("vrackOvhcloudconnect", {
        ovhCloudConnect: "<OVH Cloud Connect service name>",
        serviceName: "<vRack service name>",
    });
    
    import pulumi
    import pulumi_ovh as ovh
    
    vrack_ovhcloudconnect = ovh.vrack.OVHcloudConnect("vrackOvhcloudconnect",
        ovh_cloud_connect="<OVH Cloud Connect service name>",
        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.NewOVHcloudConnect(ctx, "vrackOvhcloudconnect", &vrack.OVHcloudConnectArgs{
    			OvhCloudConnect: pulumi.String("<OVH Cloud Connect service name>"),
    			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 vrackOvhcloudconnect = new Ovh.Vrack.OVHcloudConnect("vrackOvhcloudconnect", new()
        {
            OvhCloudConnect = "<OVH Cloud Connect service name>",
            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.OVHcloudConnect;
    import com.pulumi.ovh.Vrack.OVHcloudConnectArgs;
    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 vrackOvhcloudconnect = new OVHcloudConnect("vrackOvhcloudconnect", OVHcloudConnectArgs.builder()
                .ovhCloudConnect("<OVH Cloud Connect service name>")
                .serviceName("<vRack service name>")
                .build());
    
        }
    }
    
    resources:
      vrackOvhcloudconnect:
        type: ovh:Vrack:OVHcloudConnect
        properties:
          ovhCloudConnect: <OVH Cloud Connect service name>
          serviceName: <vRack service name>
    

    Create OVHcloudConnect Resource

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

    Constructor syntax

    new OVHcloudConnect(name: string, args: OVHcloudConnectArgs, opts?: CustomResourceOptions);
    @overload
    def OVHcloudConnect(resource_name: str,
                        args: OVHcloudConnectArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def OVHcloudConnect(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        ovh_cloud_connect: Optional[str] = None,
                        service_name: Optional[str] = None)
    func NewOVHcloudConnect(ctx *Context, name string, args OVHcloudConnectArgs, opts ...ResourceOption) (*OVHcloudConnect, error)
    public OVHcloudConnect(string name, OVHcloudConnectArgs args, CustomResourceOptions? opts = null)
    public OVHcloudConnect(String name, OVHcloudConnectArgs args)
    public OVHcloudConnect(String name, OVHcloudConnectArgs args, CustomResourceOptions options)
    
    type: ovh:Vrack:OVHcloudConnect
    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 OVHcloudConnectArgs
    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 OVHcloudConnectArgs
    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 OVHcloudConnectArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OVHcloudConnectArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OVHcloudConnectArgs
    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 ovhcloudConnectResource = new Ovh.Vrack.OVHcloudConnect("ovhcloudConnectResource", new()
    {
        OvhCloudConnect = "string",
        ServiceName = "string",
    });
    
    example, err := Vrack.NewOVHcloudConnect(ctx, "ovhcloudConnectResource", &Vrack.OVHcloudConnectArgs{
    	OvhCloudConnect: pulumi.String("string"),
    	ServiceName:     pulumi.String("string"),
    })
    
    var ovhcloudConnectResource = new OVHcloudConnect("ovhcloudConnectResource", OVHcloudConnectArgs.builder()
        .ovhCloudConnect("string")
        .serviceName("string")
        .build());
    
    ovhcloud_connect_resource = ovh.vrack.OVHcloudConnect("ovhcloudConnectResource",
        ovh_cloud_connect="string",
        service_name="string")
    
    const ovhcloudConnectResource = new ovh.vrack.OVHcloudConnect("ovhcloudConnectResource", {
        ovhCloudConnect: "string",
        serviceName: "string",
    });
    
    type: ovh:Vrack:OVHcloudConnect
    properties:
        ovhCloudConnect: string
        serviceName: string
    

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

    OvhCloudConnect string
    Your OVH Cloud Connect service name.
    ServiceName string
    The internal name of your vrack
    OvhCloudConnect string
    Your OVH Cloud Connect service name.
    ServiceName string
    The internal name of your vrack
    ovhCloudConnect String
    Your OVH Cloud Connect service name.
    serviceName String
    The internal name of your vrack
    ovhCloudConnect string
    Your OVH Cloud Connect service name.
    serviceName string
    The internal name of your vrack
    ovh_cloud_connect str
    Your OVH Cloud Connect service name.
    service_name str
    The internal name of your vrack
    ovhCloudConnect String
    Your OVH Cloud Connect service name.
    serviceName String
    The internal name of your vrack

    Outputs

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

    Get an existing OVHcloudConnect 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?: OVHcloudConnectState, opts?: CustomResourceOptions): OVHcloudConnect
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ovh_cloud_connect: Optional[str] = None,
            service_name: Optional[str] = None) -> OVHcloudConnect
    func GetOVHcloudConnect(ctx *Context, name string, id IDInput, state *OVHcloudConnectState, opts ...ResourceOption) (*OVHcloudConnect, error)
    public static OVHcloudConnect Get(string name, Input<string> id, OVHcloudConnectState? state, CustomResourceOptions? opts = null)
    public static OVHcloudConnect get(String name, Output<String> id, OVHcloudConnectState state, CustomResourceOptions options)
    resources:  _:    type: ovh:Vrack:OVHcloudConnect    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.
    The following state arguments are supported:
    OvhCloudConnect string
    Your OVH Cloud Connect service name.
    ServiceName string
    The internal name of your vrack
    OvhCloudConnect string
    Your OVH Cloud Connect service name.
    ServiceName string
    The internal name of your vrack
    ovhCloudConnect String
    Your OVH Cloud Connect service name.
    serviceName String
    The internal name of your vrack
    ovhCloudConnect string
    Your OVH Cloud Connect service name.
    serviceName string
    The internal name of your vrack
    ovh_cloud_connect str
    Your OVH Cloud Connect service name.
    service_name str
    The internal name of your vrack
    ovhCloudConnect String
    Your OVH Cloud Connect service name.
    serviceName String
    The internal name of your vrack

    Import

    Attachment of an OVH Cloud Connect and a vRack can be imported using the service_name (vRack identifier) and the ovh_cloud_connect (OVH Cloud Connect service name), separated by “/” E.g.,

    bash

    $ pulumi import ovh:Vrack/oVHcloudConnect:OVHcloudConnect myattach "<service_name>/<OVH Cloud Connect service name>"
    

    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.
    ovh logo
    OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud