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

volcengine.direct_connect.BgpPeer

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 bgp peer

    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.BgpPeer("foo", new()
        {
            Description = "tf-test",
            RemoteAsn = 2000,
            VirtualInterfaceId = "dcv-62vi13v131tsn3gd6il****",
        });
    
    });
    
    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.NewBgpPeer(ctx, "foo", &direct_connect.BgpPeerArgs{
    			Description:        pulumi.String("tf-test"),
    			RemoteAsn:          pulumi.Int(2000),
    			VirtualInterfaceId: pulumi.String("dcv-62vi13v131tsn3gd6il****"),
    		})
    		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.BgpPeer;
    import com.pulumi.volcengine.direct_connect.BgpPeerArgs;
    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 BgpPeer("foo", BgpPeerArgs.builder()        
                .description("tf-test")
                .remoteAsn(2000)
                .virtualInterfaceId("dcv-62vi13v131tsn3gd6il****")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    foo = volcengine.direct_connect.BgpPeer("foo",
        description="tf-test",
        remote_asn=2000,
        virtual_interface_id="dcv-62vi13v131tsn3gd6il****")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@volcengine/pulumi";
    
    const foo = new volcengine.direct_connect.BgpPeer("foo", {
        description: "tf-test",
        remoteAsn: 2000,
        virtualInterfaceId: "dcv-62vi13v131tsn3gd6il****",
    });
    
    resources:
      foo:
        type: volcengine:direct_connect:BgpPeer
        properties:
          description: tf-test
          remoteAsn: 2000
          virtualInterfaceId: dcv-62vi13v131tsn3gd6il****
    

    Create BgpPeer Resource

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

    Constructor syntax

    new BgpPeer(name: string, args: BgpPeerArgs, opts?: CustomResourceOptions);
    @overload
    def BgpPeer(resource_name: str,
                args: BgpPeerArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def BgpPeer(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                remote_asn: Optional[int] = None,
                virtual_interface_id: Optional[str] = None,
                auth_key: Optional[str] = None,
                bgp_peer_name: Optional[str] = None,
                description: Optional[str] = None)
    func NewBgpPeer(ctx *Context, name string, args BgpPeerArgs, opts ...ResourceOption) (*BgpPeer, error)
    public BgpPeer(string name, BgpPeerArgs args, CustomResourceOptions? opts = null)
    public BgpPeer(String name, BgpPeerArgs args)
    public BgpPeer(String name, BgpPeerArgs args, CustomResourceOptions options)
    
    type: volcengine:direct_connect:BgpPeer
    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 BgpPeerArgs
    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 BgpPeerArgs
    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 BgpPeerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BgpPeerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BgpPeerArgs
    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 bgpPeerResource = new Volcengine.Direct_connect.BgpPeer("bgpPeerResource", new()
    {
        RemoteAsn = 0,
        VirtualInterfaceId = "string",
        AuthKey = "string",
        BgpPeerName = "string",
        Description = "string",
    });
    
    example, err := direct_connect.NewBgpPeer(ctx, "bgpPeerResource", &direct_connect.BgpPeerArgs{
    	RemoteAsn:          pulumi.Int(0),
    	VirtualInterfaceId: pulumi.String("string"),
    	AuthKey:            pulumi.String("string"),
    	BgpPeerName:        pulumi.String("string"),
    	Description:        pulumi.String("string"),
    })
    
    var bgpPeerResource = new BgpPeer("bgpPeerResource", BgpPeerArgs.builder()
        .remoteAsn(0)
        .virtualInterfaceId("string")
        .authKey("string")
        .bgpPeerName("string")
        .description("string")
        .build());
    
    bgp_peer_resource = volcengine.direct_connect.BgpPeer("bgpPeerResource",
        remote_asn=0,
        virtual_interface_id="string",
        auth_key="string",
        bgp_peer_name="string",
        description="string")
    
    const bgpPeerResource = new volcengine.direct_connect.BgpPeer("bgpPeerResource", {
        remoteAsn: 0,
        virtualInterfaceId: "string",
        authKey: "string",
        bgpPeerName: "string",
        description: "string",
    });
    
    type: volcengine:direct_connect:BgpPeer
    properties:
        authKey: string
        bgpPeerName: string
        description: string
        remoteAsn: 0
        virtualInterfaceId: string
    

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

    RemoteAsn int
    The remote asn of bgp peer.
    VirtualInterfaceId string
    The id of virtual interface.
    AuthKey string
    The auth key of bgp peer.
    BgpPeerName string
    The name of bgp peer.
    Description string
    The description of bgp peer.
    RemoteAsn int
    The remote asn of bgp peer.
    VirtualInterfaceId string
    The id of virtual interface.
    AuthKey string
    The auth key of bgp peer.
    BgpPeerName string
    The name of bgp peer.
    Description string
    The description of bgp peer.
    remoteAsn Integer
    The remote asn of bgp peer.
    virtualInterfaceId String
    The id of virtual interface.
    authKey String
    The auth key of bgp peer.
    bgpPeerName String
    The name of bgp peer.
    description String
    The description of bgp peer.
    remoteAsn number
    The remote asn of bgp peer.
    virtualInterfaceId string
    The id of virtual interface.
    authKey string
    The auth key of bgp peer.
    bgpPeerName string
    The name of bgp peer.
    description string
    The description of bgp peer.
    remote_asn int
    The remote asn of bgp peer.
    virtual_interface_id str
    The id of virtual interface.
    auth_key str
    The auth key of bgp peer.
    bgp_peer_name str
    The name of bgp peer.
    description str
    The description of bgp peer.
    remoteAsn Number
    The remote asn of bgp peer.
    virtualInterfaceId String
    The id of virtual interface.
    authKey String
    The auth key of bgp peer.
    bgpPeerName String
    The name of bgp peer.
    description String
    The description of bgp peer.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the BgpPeer resource produces the following output properties:

    AccountId string
    The id of account.
    BgpPeerId string
    The id of bgp peer.
    CreationTime string
    The create time of bgp peer.
    Id string
    The provider-assigned unique ID for this managed resource.
    LocalAsn int
    The local asn of bgp peer.
    SessionStatus string
    The session status of bgp peer.
    Status string
    The status of bgp peer.
    UpdateTime string
    The update time of bgp peer.
    AccountId string
    The id of account.
    BgpPeerId string
    The id of bgp peer.
    CreationTime string
    The create time of bgp peer.
    Id string
    The provider-assigned unique ID for this managed resource.
    LocalAsn int
    The local asn of bgp peer.
    SessionStatus string
    The session status of bgp peer.
    Status string
    The status of bgp peer.
    UpdateTime string
    The update time of bgp peer.
    accountId String
    The id of account.
    bgpPeerId String
    The id of bgp peer.
    creationTime String
    The create time of bgp peer.
    id String
    The provider-assigned unique ID for this managed resource.
    localAsn Integer
    The local asn of bgp peer.
    sessionStatus String
    The session status of bgp peer.
    status String
    The status of bgp peer.
    updateTime String
    The update time of bgp peer.
    accountId string
    The id of account.
    bgpPeerId string
    The id of bgp peer.
    creationTime string
    The create time of bgp peer.
    id string
    The provider-assigned unique ID for this managed resource.
    localAsn number
    The local asn of bgp peer.
    sessionStatus string
    The session status of bgp peer.
    status string
    The status of bgp peer.
    updateTime string
    The update time of bgp peer.
    account_id str
    The id of account.
    bgp_peer_id str
    The id of bgp peer.
    creation_time str
    The create time of bgp peer.
    id str
    The provider-assigned unique ID for this managed resource.
    local_asn int
    The local asn of bgp peer.
    session_status str
    The session status of bgp peer.
    status str
    The status of bgp peer.
    update_time str
    The update time of bgp peer.
    accountId String
    The id of account.
    bgpPeerId String
    The id of bgp peer.
    creationTime String
    The create time of bgp peer.
    id String
    The provider-assigned unique ID for this managed resource.
    localAsn Number
    The local asn of bgp peer.
    sessionStatus String
    The session status of bgp peer.
    status String
    The status of bgp peer.
    updateTime String
    The update time of bgp peer.

    Look up Existing BgpPeer Resource

    Get an existing BgpPeer 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?: BgpPeerState, opts?: CustomResourceOptions): BgpPeer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            auth_key: Optional[str] = None,
            bgp_peer_id: Optional[str] = None,
            bgp_peer_name: Optional[str] = None,
            creation_time: Optional[str] = None,
            description: Optional[str] = None,
            local_asn: Optional[int] = None,
            remote_asn: Optional[int] = None,
            session_status: Optional[str] = None,
            status: Optional[str] = None,
            update_time: Optional[str] = None,
            virtual_interface_id: Optional[str] = None) -> BgpPeer
    func GetBgpPeer(ctx *Context, name string, id IDInput, state *BgpPeerState, opts ...ResourceOption) (*BgpPeer, error)
    public static BgpPeer Get(string name, Input<string> id, BgpPeerState? state, CustomResourceOptions? opts = null)
    public static BgpPeer get(String name, Output<String> id, BgpPeerState 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:
    AccountId string
    The id of account.
    AuthKey string
    The auth key of bgp peer.
    BgpPeerId string
    The id of bgp peer.
    BgpPeerName string
    The name of bgp peer.
    CreationTime string
    The create time of bgp peer.
    Description string
    The description of bgp peer.
    LocalAsn int
    The local asn of bgp peer.
    RemoteAsn int
    The remote asn of bgp peer.
    SessionStatus string
    The session status of bgp peer.
    Status string
    The status of bgp peer.
    UpdateTime string
    The update time of bgp peer.
    VirtualInterfaceId string
    The id of virtual interface.
    AccountId string
    The id of account.
    AuthKey string
    The auth key of bgp peer.
    BgpPeerId string
    The id of bgp peer.
    BgpPeerName string
    The name of bgp peer.
    CreationTime string
    The create time of bgp peer.
    Description string
    The description of bgp peer.
    LocalAsn int
    The local asn of bgp peer.
    RemoteAsn int
    The remote asn of bgp peer.
    SessionStatus string
    The session status of bgp peer.
    Status string
    The status of bgp peer.
    UpdateTime string
    The update time of bgp peer.
    VirtualInterfaceId string
    The id of virtual interface.
    accountId String
    The id of account.
    authKey String
    The auth key of bgp peer.
    bgpPeerId String
    The id of bgp peer.
    bgpPeerName String
    The name of bgp peer.
    creationTime String
    The create time of bgp peer.
    description String
    The description of bgp peer.
    localAsn Integer
    The local asn of bgp peer.
    remoteAsn Integer
    The remote asn of bgp peer.
    sessionStatus String
    The session status of bgp peer.
    status String
    The status of bgp peer.
    updateTime String
    The update time of bgp peer.
    virtualInterfaceId String
    The id of virtual interface.
    accountId string
    The id of account.
    authKey string
    The auth key of bgp peer.
    bgpPeerId string
    The id of bgp peer.
    bgpPeerName string
    The name of bgp peer.
    creationTime string
    The create time of bgp peer.
    description string
    The description of bgp peer.
    localAsn number
    The local asn of bgp peer.
    remoteAsn number
    The remote asn of bgp peer.
    sessionStatus string
    The session status of bgp peer.
    status string
    The status of bgp peer.
    updateTime string
    The update time of bgp peer.
    virtualInterfaceId string
    The id of virtual interface.
    account_id str
    The id of account.
    auth_key str
    The auth key of bgp peer.
    bgp_peer_id str
    The id of bgp peer.
    bgp_peer_name str
    The name of bgp peer.
    creation_time str
    The create time of bgp peer.
    description str
    The description of bgp peer.
    local_asn int
    The local asn of bgp peer.
    remote_asn int
    The remote asn of bgp peer.
    session_status str
    The session status of bgp peer.
    status str
    The status of bgp peer.
    update_time str
    The update time of bgp peer.
    virtual_interface_id str
    The id of virtual interface.
    accountId String
    The id of account.
    authKey String
    The auth key of bgp peer.
    bgpPeerId String
    The id of bgp peer.
    bgpPeerName String
    The name of bgp peer.
    creationTime String
    The create time of bgp peer.
    description String
    The description of bgp peer.
    localAsn Number
    The local asn of bgp peer.
    remoteAsn Number
    The remote asn of bgp peer.
    sessionStatus String
    The session status of bgp peer.
    status String
    The status of bgp peer.
    updateTime String
    The update time of bgp peer.
    virtualInterfaceId String
    The id of virtual interface.

    Import

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

     $ pulumi import volcengine:direct_connect/bgpPeer:BgpPeer default bgp-2752hz4teko3k7fap8u4c****
    

    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