1. Packages
  2. Volcengine
  3. API Docs
  4. direct_connect
  5. Connection
Volcengine v0.0.25 published on Tuesday, Jul 2, 2024 by Volcengine

volcengine.direct_connect.Connection

Explore with Pulumi AI

volcengine logo
Volcengine v0.0.25 published on Tuesday, Jul 2, 2024 by Volcengine

    Provides a resource to manage direct connect connection

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var foo = new Volcengine.Direct_connect.Connection("foo", new()
        {
            Bandwidth = 1000,
            CustomerContactEmail = "email@aaa.com",
            CustomerContactPhone = "12345678911",
            CustomerName = "tf-a",
            Description = "tf-test",
            DirectConnectAccessPointId = "ap-cn-beijing-a",
            DirectConnectConnectionName = "tf-test-connection",
            LineOperator = "ChinaOther",
            PeerLocation = "XX路XX号XX楼XX机房",
            PortSpec = "10G",
            PortType = "10GBase",
            Tags = new[]
            {
                new Volcengine.Direct_connect.Inputs.ConnectionTagArgs
                {
                    Key = "k1",
                    Value = "v1",
                },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/direct_connect"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := direct_connect.NewConnection(ctx, "foo", &direct_connect.ConnectionArgs{
    			Bandwidth:                   pulumi.Int(1000),
    			CustomerContactEmail:        pulumi.String("email@aaa.com"),
    			CustomerContactPhone:        pulumi.String("12345678911"),
    			CustomerName:                pulumi.String("tf-a"),
    			Description:                 pulumi.String("tf-test"),
    			DirectConnectAccessPointId:  pulumi.String("ap-cn-beijing-a"),
    			DirectConnectConnectionName: pulumi.String("tf-test-connection"),
    			LineOperator:                pulumi.String("ChinaOther"),
    			PeerLocation:                pulumi.String("XX路XX号XX楼XX机房"),
    			PortSpec:                    pulumi.String("10G"),
    			PortType:                    pulumi.String("10GBase"),
    			Tags: direct_connect.ConnectionTagArray{
    				&direct_connect.ConnectionTagArgs{
    					Key:   pulumi.String("k1"),
    					Value: pulumi.String("v1"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.volcengine.direct_connect.Connection;
    import com.pulumi.volcengine.direct_connect.ConnectionArgs;
    import com.pulumi.volcengine.direct_connect.inputs.ConnectionTagArgs;
    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 foo = new Connection("foo", ConnectionArgs.builder()        
                .bandwidth(1000)
                .customerContactEmail("email@aaa.com")
                .customerContactPhone("12345678911")
                .customerName("tf-a")
                .description("tf-test")
                .directConnectAccessPointId("ap-cn-beijing-a")
                .directConnectConnectionName("tf-test-connection")
                .lineOperator("ChinaOther")
                .peerLocation("XX路XX号XX楼XX机房")
                .portSpec("10G")
                .portType("10GBase")
                .tags(ConnectionTagArgs.builder()
                    .key("k1")
                    .value("v1")
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    foo = volcengine.direct_connect.Connection("foo",
        bandwidth=1000,
        customer_contact_email="email@aaa.com",
        customer_contact_phone="12345678911",
        customer_name="tf-a",
        description="tf-test",
        direct_connect_access_point_id="ap-cn-beijing-a",
        direct_connect_connection_name="tf-test-connection",
        line_operator="ChinaOther",
        peer_location="XX路XX号XX楼XX机房",
        port_spec="10G",
        port_type="10GBase",
        tags=[volcengine.direct_connect.ConnectionTagArgs(
            key="k1",
            value="v1",
        )])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@volcengine/pulumi";
    
    const foo = new volcengine.direct_connect.Connection("foo", {
        bandwidth: 1000,
        customerContactEmail: "email@aaa.com",
        customerContactPhone: "12345678911",
        customerName: "tf-a",
        description: "tf-test",
        directConnectAccessPointId: "ap-cn-beijing-a",
        directConnectConnectionName: "tf-test-connection",
        lineOperator: "ChinaOther",
        peerLocation: "XX路XX号XX楼XX机房",
        portSpec: "10G",
        portType: "10GBase",
        tags: [{
            key: "k1",
            value: "v1",
        }],
    });
    
    resources:
      foo:
        type: volcengine:direct_connect:Connection
        properties:
          bandwidth: 1000
          customerContactEmail: email@aaa.com
          customerContactPhone: '12345678911'
          customerName: tf-a
          description: tf-test
          directConnectAccessPointId: ap-cn-beijing-a
          directConnectConnectionName: tf-test-connection
          lineOperator: ChinaOther
          peerLocation: XX路XX号XX楼XX机房
          portSpec: 10G
          portType: 10GBase
          tags:
            - key: k1
              value: v1
    

    Create Connection Resource

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

    Constructor syntax

    new Connection(name: string, args: ConnectionArgs, opts?: CustomResourceOptions);
    @overload
    def Connection(resource_name: str,
                   args: ConnectionArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def Connection(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   bandwidth: Optional[int] = None,
                   customer_contact_email: Optional[str] = None,
                   customer_contact_phone: Optional[str] = None,
                   customer_name: Optional[str] = None,
                   direct_connect_access_point_id: Optional[str] = None,
                   line_operator: Optional[str] = None,
                   peer_location: Optional[str] = None,
                   port_spec: Optional[str] = None,
                   port_type: Optional[str] = None,
                   description: Optional[str] = None,
                   direct_connect_connection_name: Optional[str] = None,
                   tags: Optional[Sequence[ConnectionTagArgs]] = None)
    func NewConnection(ctx *Context, name string, args ConnectionArgs, opts ...ResourceOption) (*Connection, error)
    public Connection(string name, ConnectionArgs args, CustomResourceOptions? opts = null)
    public Connection(String name, ConnectionArgs args)
    public Connection(String name, ConnectionArgs args, CustomResourceOptions options)
    
    type: volcengine:direct_connect:Connection
    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 ConnectionArgs
    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 ConnectionArgs
    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 ConnectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ConnectionArgs
    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 connectionResource = new Volcengine.Direct_connect.Connection("connectionResource", new()
    {
        Bandwidth = 0,
        CustomerContactEmail = "string",
        CustomerContactPhone = "string",
        CustomerName = "string",
        DirectConnectAccessPointId = "string",
        LineOperator = "string",
        PeerLocation = "string",
        PortSpec = "string",
        PortType = "string",
        Description = "string",
        DirectConnectConnectionName = "string",
        Tags = new[]
        {
            new Volcengine.Direct_connect.Inputs.ConnectionTagArgs
            {
                Key = "string",
                Value = "string",
            },
        },
    });
    
    example, err := direct_connect.NewConnection(ctx, "connectionResource", &direct_connect.ConnectionArgs{
    	Bandwidth:                   pulumi.Int(0),
    	CustomerContactEmail:        pulumi.String("string"),
    	CustomerContactPhone:        pulumi.String("string"),
    	CustomerName:                pulumi.String("string"),
    	DirectConnectAccessPointId:  pulumi.String("string"),
    	LineOperator:                pulumi.String("string"),
    	PeerLocation:                pulumi.String("string"),
    	PortSpec:                    pulumi.String("string"),
    	PortType:                    pulumi.String("string"),
    	Description:                 pulumi.String("string"),
    	DirectConnectConnectionName: pulumi.String("string"),
    	Tags: direct_connect.ConnectionTagArray{
    		&direct_connect.ConnectionTagArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    })
    
    var connectionResource = new Connection("connectionResource", ConnectionArgs.builder()
        .bandwidth(0)
        .customerContactEmail("string")
        .customerContactPhone("string")
        .customerName("string")
        .directConnectAccessPointId("string")
        .lineOperator("string")
        .peerLocation("string")
        .portSpec("string")
        .portType("string")
        .description("string")
        .directConnectConnectionName("string")
        .tags(ConnectionTagArgs.builder()
            .key("string")
            .value("string")
            .build())
        .build());
    
    connection_resource = volcengine.direct_connect.Connection("connectionResource",
        bandwidth=0,
        customer_contact_email="string",
        customer_contact_phone="string",
        customer_name="string",
        direct_connect_access_point_id="string",
        line_operator="string",
        peer_location="string",
        port_spec="string",
        port_type="string",
        description="string",
        direct_connect_connection_name="string",
        tags=[volcengine.direct_connect.ConnectionTagArgs(
            key="string",
            value="string",
        )])
    
    const connectionResource = new volcengine.direct_connect.Connection("connectionResource", {
        bandwidth: 0,
        customerContactEmail: "string",
        customerContactPhone: "string",
        customerName: "string",
        directConnectAccessPointId: "string",
        lineOperator: "string",
        peerLocation: "string",
        portSpec: "string",
        portType: "string",
        description: "string",
        directConnectConnectionName: "string",
        tags: [{
            key: "string",
            value: "string",
        }],
    });
    
    type: volcengine:direct_connect:Connection
    properties:
        bandwidth: 0
        customerContactEmail: string
        customerContactPhone: string
        customerName: string
        description: string
        directConnectAccessPointId: string
        directConnectConnectionName: string
        lineOperator: string
        peerLocation: string
        portSpec: string
        portType: string
        tags:
            - key: string
              value: string
    

    Connection Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Connection resource accepts the following input properties:

    Bandwidth int
    The line band width,unit:Mbps.
    CustomerContactEmail string
    The dedicated line contact email.
    CustomerContactPhone string
    The dedicated line contact phone.
    CustomerName string
    The dedicated line contact name.
    DirectConnectAccessPointId string
    The direct connect access point id.
    LineOperator string
    The physical leased line operator.valid value contains ChinaTelecom,ChinaMobile,ChinaUnicom,ChinaOther.
    PeerLocation string
    The local IDC address.
    PortSpec string
    The physical leased line port spec.valid value contains 1G,10G.
    PortType string
    The physical leased line port type and spec.valid value contains 1000Base-T,10GBase-T,1000Base,10GBase,40GBase,100GBase.
    Description string
    The description of direct connect.
    DirectConnectConnectionName string
    The name of direct connect.
    Tags List<ConnectionTag>
    The physical leased line tags.
    Bandwidth int
    The line band width,unit:Mbps.
    CustomerContactEmail string
    The dedicated line contact email.
    CustomerContactPhone string
    The dedicated line contact phone.
    CustomerName string
    The dedicated line contact name.
    DirectConnectAccessPointId string
    The direct connect access point id.
    LineOperator string
    The physical leased line operator.valid value contains ChinaTelecom,ChinaMobile,ChinaUnicom,ChinaOther.
    PeerLocation string
    The local IDC address.
    PortSpec string
    The physical leased line port spec.valid value contains 1G,10G.
    PortType string
    The physical leased line port type and spec.valid value contains 1000Base-T,10GBase-T,1000Base,10GBase,40GBase,100GBase.
    Description string
    The description of direct connect.
    DirectConnectConnectionName string
    The name of direct connect.
    Tags []ConnectionTagArgs
    The physical leased line tags.
    bandwidth Integer
    The line band width,unit:Mbps.
    customerContactEmail String
    The dedicated line contact email.
    customerContactPhone String
    The dedicated line contact phone.
    customerName String
    The dedicated line contact name.
    directConnectAccessPointId String
    The direct connect access point id.
    lineOperator String
    The physical leased line operator.valid value contains ChinaTelecom,ChinaMobile,ChinaUnicom,ChinaOther.
    peerLocation String
    The local IDC address.
    portSpec String
    The physical leased line port spec.valid value contains 1G,10G.
    portType String
    The physical leased line port type and spec.valid value contains 1000Base-T,10GBase-T,1000Base,10GBase,40GBase,100GBase.
    description String
    The description of direct connect.
    directConnectConnectionName String
    The name of direct connect.
    tags List<ConnectionTag>
    The physical leased line tags.
    bandwidth number
    The line band width,unit:Mbps.
    customerContactEmail string
    The dedicated line contact email.
    customerContactPhone string
    The dedicated line contact phone.
    customerName string
    The dedicated line contact name.
    directConnectAccessPointId string
    The direct connect access point id.
    lineOperator string
    The physical leased line operator.valid value contains ChinaTelecom,ChinaMobile,ChinaUnicom,ChinaOther.
    peerLocation string
    The local IDC address.
    portSpec string
    The physical leased line port spec.valid value contains 1G,10G.
    portType string
    The physical leased line port type and spec.valid value contains 1000Base-T,10GBase-T,1000Base,10GBase,40GBase,100GBase.
    description string
    The description of direct connect.
    directConnectConnectionName string
    The name of direct connect.
    tags ConnectionTag[]
    The physical leased line tags.
    bandwidth int
    The line band width,unit:Mbps.
    customer_contact_email str
    The dedicated line contact email.
    customer_contact_phone str
    The dedicated line contact phone.
    customer_name str
    The dedicated line contact name.
    direct_connect_access_point_id str
    The direct connect access point id.
    line_operator str
    The physical leased line operator.valid value contains ChinaTelecom,ChinaMobile,ChinaUnicom,ChinaOther.
    peer_location str
    The local IDC address.
    port_spec str
    The physical leased line port spec.valid value contains 1G,10G.
    port_type str
    The physical leased line port type and spec.valid value contains 1000Base-T,10GBase-T,1000Base,10GBase,40GBase,100GBase.
    description str
    The description of direct connect.
    direct_connect_connection_name str
    The name of direct connect.
    tags Sequence[ConnectionTagArgs]
    The physical leased line tags.
    bandwidth Number
    The line band width,unit:Mbps.
    customerContactEmail String
    The dedicated line contact email.
    customerContactPhone String
    The dedicated line contact phone.
    customerName String
    The dedicated line contact name.
    directConnectAccessPointId String
    The direct connect access point id.
    lineOperator String
    The physical leased line operator.valid value contains ChinaTelecom,ChinaMobile,ChinaUnicom,ChinaOther.
    peerLocation String
    The local IDC address.
    portSpec String
    The physical leased line port spec.valid value contains 1G,10G.
    portType String
    The physical leased line port type and spec.valid value contains 1000Base-T,10GBase-T,1000Base,10GBase,40GBase,100GBase.
    description String
    The description of direct connect.
    directConnectConnectionName String
    The name of direct connect.
    tags List<Property Map>
    The physical leased line tags.

    Outputs

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

    Get an existing Connection 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?: ConnectionState, opts?: CustomResourceOptions): Connection
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bandwidth: Optional[int] = None,
            customer_contact_email: Optional[str] = None,
            customer_contact_phone: Optional[str] = None,
            customer_name: Optional[str] = None,
            description: Optional[str] = None,
            direct_connect_access_point_id: Optional[str] = None,
            direct_connect_connection_name: Optional[str] = None,
            line_operator: Optional[str] = None,
            peer_location: Optional[str] = None,
            port_spec: Optional[str] = None,
            port_type: Optional[str] = None,
            tags: Optional[Sequence[ConnectionTagArgs]] = None) -> Connection
    func GetConnection(ctx *Context, name string, id IDInput, state *ConnectionState, opts ...ResourceOption) (*Connection, error)
    public static Connection Get(string name, Input<string> id, ConnectionState? state, CustomResourceOptions? opts = null)
    public static Connection get(String name, Output<String> id, ConnectionState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    Bandwidth int
    The line band width,unit:Mbps.
    CustomerContactEmail string
    The dedicated line contact email.
    CustomerContactPhone string
    The dedicated line contact phone.
    CustomerName string
    The dedicated line contact name.
    Description string
    The description of direct connect.
    DirectConnectAccessPointId string
    The direct connect access point id.
    DirectConnectConnectionName string
    The name of direct connect.
    LineOperator string
    The physical leased line operator.valid value contains ChinaTelecom,ChinaMobile,ChinaUnicom,ChinaOther.
    PeerLocation string
    The local IDC address.
    PortSpec string
    The physical leased line port spec.valid value contains 1G,10G.
    PortType string
    The physical leased line port type and spec.valid value contains 1000Base-T,10GBase-T,1000Base,10GBase,40GBase,100GBase.
    Tags List<ConnectionTag>
    The physical leased line tags.
    Bandwidth int
    The line band width,unit:Mbps.
    CustomerContactEmail string
    The dedicated line contact email.
    CustomerContactPhone string
    The dedicated line contact phone.
    CustomerName string
    The dedicated line contact name.
    Description string
    The description of direct connect.
    DirectConnectAccessPointId string
    The direct connect access point id.
    DirectConnectConnectionName string
    The name of direct connect.
    LineOperator string
    The physical leased line operator.valid value contains ChinaTelecom,ChinaMobile,ChinaUnicom,ChinaOther.
    PeerLocation string
    The local IDC address.
    PortSpec string
    The physical leased line port spec.valid value contains 1G,10G.
    PortType string
    The physical leased line port type and spec.valid value contains 1000Base-T,10GBase-T,1000Base,10GBase,40GBase,100GBase.
    Tags []ConnectionTagArgs
    The physical leased line tags.
    bandwidth Integer
    The line band width,unit:Mbps.
    customerContactEmail String
    The dedicated line contact email.
    customerContactPhone String
    The dedicated line contact phone.
    customerName String
    The dedicated line contact name.
    description String
    The description of direct connect.
    directConnectAccessPointId String
    The direct connect access point id.
    directConnectConnectionName String
    The name of direct connect.
    lineOperator String
    The physical leased line operator.valid value contains ChinaTelecom,ChinaMobile,ChinaUnicom,ChinaOther.
    peerLocation String
    The local IDC address.
    portSpec String
    The physical leased line port spec.valid value contains 1G,10G.
    portType String
    The physical leased line port type and spec.valid value contains 1000Base-T,10GBase-T,1000Base,10GBase,40GBase,100GBase.
    tags List<ConnectionTag>
    The physical leased line tags.
    bandwidth number
    The line band width,unit:Mbps.
    customerContactEmail string
    The dedicated line contact email.
    customerContactPhone string
    The dedicated line contact phone.
    customerName string
    The dedicated line contact name.
    description string
    The description of direct connect.
    directConnectAccessPointId string
    The direct connect access point id.
    directConnectConnectionName string
    The name of direct connect.
    lineOperator string
    The physical leased line operator.valid value contains ChinaTelecom,ChinaMobile,ChinaUnicom,ChinaOther.
    peerLocation string
    The local IDC address.
    portSpec string
    The physical leased line port spec.valid value contains 1G,10G.
    portType string
    The physical leased line port type and spec.valid value contains 1000Base-T,10GBase-T,1000Base,10GBase,40GBase,100GBase.
    tags ConnectionTag[]
    The physical leased line tags.
    bandwidth int
    The line band width,unit:Mbps.
    customer_contact_email str
    The dedicated line contact email.
    customer_contact_phone str
    The dedicated line contact phone.
    customer_name str
    The dedicated line contact name.
    description str
    The description of direct connect.
    direct_connect_access_point_id str
    The direct connect access point id.
    direct_connect_connection_name str
    The name of direct connect.
    line_operator str
    The physical leased line operator.valid value contains ChinaTelecom,ChinaMobile,ChinaUnicom,ChinaOther.
    peer_location str
    The local IDC address.
    port_spec str
    The physical leased line port spec.valid value contains 1G,10G.
    port_type str
    The physical leased line port type and spec.valid value contains 1000Base-T,10GBase-T,1000Base,10GBase,40GBase,100GBase.
    tags Sequence[ConnectionTagArgs]
    The physical leased line tags.
    bandwidth Number
    The line band width,unit:Mbps.
    customerContactEmail String
    The dedicated line contact email.
    customerContactPhone String
    The dedicated line contact phone.
    customerName String
    The dedicated line contact name.
    description String
    The description of direct connect.
    directConnectAccessPointId String
    The direct connect access point id.
    directConnectConnectionName String
    The name of direct connect.
    lineOperator String
    The physical leased line operator.valid value contains ChinaTelecom,ChinaMobile,ChinaUnicom,ChinaOther.
    peerLocation String
    The local IDC address.
    portSpec String
    The physical leased line port spec.valid value contains 1G,10G.
    portType String
    The physical leased line port type and spec.valid value contains 1000Base-T,10GBase-T,1000Base,10GBase,40GBase,100GBase.
    tags List<Property Map>
    The physical leased line tags.

    Supporting Types

    ConnectionTag, ConnectionTagArgs

    Key string
    The tag key.
    Value string
    The tag value.
    Key string
    The tag key.
    Value string
    The tag value.
    key String
    The tag key.
    value String
    The tag value.
    key string
    The tag key.
    value string
    The tag value.
    key str
    The tag key.
    value str
    The tag value.
    key String
    The tag key.
    value String
    The tag value.

    Import

    DirectConnectConnection can be imported using the id, e.g.

     $ pulumi import volcengine:direct_connect/connection:Connection default dcc-7qthudw0ll6jmc****
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.25 published on Tuesday, Jul 2, 2024 by Volcengine