UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

205 lines (204 loc) 6.55 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Provides a resource to manage transit router vpn attachment * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@volcengine/pulumi"; * * const fooTransitRouter = new volcengine.transit_router.TransitRouter("fooTransitRouter", { * transitRouterName: "test-tf-acc", * description: "test-tf-acc", * }); * const fooCustomerGateway = new volcengine.vpn.CustomerGateway("fooCustomerGateway", { * ipAddress: "192.0.1.3", * customerGatewayName: "acc-test", * description: "acc-test", * }); * const fooConnection = new volcengine.vpn.Connection("fooConnection", { * vpnConnectionName: "acc-tf-test", * description: "acc-tf-test", * attachType: "TransitRouter", * customerGatewayId: fooCustomerGateway.id, * localSubnets: ["192.168.0.0/22"], * remoteSubnets: ["192.161.0.0/20"], * dpdAction: "none", * natTraversal: true, * ikeConfigPsk: "acctest@!3", * ikeConfigVersion: "ikev1", * ikeConfigMode: "main", * ikeConfigEncAlg: "aes", * ikeConfigAuthAlg: "md5", * ikeConfigDhGroup: "group2", * ikeConfigLifetime: 9000, * ikeConfigLocalId: "acc_test", * ikeConfigRemoteId: "acc_test", * ipsecConfigEncAlg: "aes", * ipsecConfigAuthAlg: "sha256", * ipsecConfigDhGroup: "group2", * ipsecConfigLifetime: 9000, * logEnabled: false, * }); * const fooVpnAttachment = new volcengine.transit_router.VpnAttachment("fooVpnAttachment", { * zoneId: "cn-beijing-a", * transitRouterAttachmentName: "tf-test-acc", * description: "tf-test-acc-desc", * transitRouterId: fooTransitRouter.id, * vpnConnectionId: fooConnection.id, * tags: [{ * key: "k1", * value: "v1", * }], * }); * ``` * * ## Import * * TransitRouterVpnAttachment can be imported using the transitRouterId:attachmentId, e.g. * * ```sh * $ pulumi import volcengine:transit_router/vpnAttachment:VpnAttachment default tr-2d6fr7mzya2gw58ozfes5g2oh:tr-attach-7qthudw0ll6jmc**** * ``` */ export declare class VpnAttachment extends pulumi.CustomResource { /** * Get an existing VpnAttachment 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<pulumi.ID>, state?: VpnAttachmentState, opts?: pulumi.CustomResourceOptions): VpnAttachment; /** * Returns true if the given object is an instance of VpnAttachment. 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 VpnAttachment; /** * The create time. */ readonly creationTime: pulumi.Output<string>; /** * The description of the transit router vpn attachment. */ readonly description: pulumi.Output<string>; /** * The status of the transit router. */ readonly status: pulumi.Output<string>; /** * Tags. */ readonly tags: pulumi.Output<outputs.transit_router.VpnAttachmentTag[] | undefined>; /** * The id of the transit router vpn attachment. */ readonly transitRouterAttachmentId: pulumi.Output<string>; /** * The name of the transit router vpn attachment. */ readonly transitRouterAttachmentName: pulumi.Output<string>; /** * The id of the transit router. */ readonly transitRouterId: pulumi.Output<string>; /** * The update time. */ readonly updateTime: pulumi.Output<string>; /** * The ID of the IPSec connection. */ readonly vpnConnectionId: pulumi.Output<string>; /** * The ID of the availability zone. */ readonly zoneId: pulumi.Output<string>; /** * Create a VpnAttachment 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: VpnAttachmentArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering VpnAttachment resources. */ export interface VpnAttachmentState { /** * The create time. */ creationTime?: pulumi.Input<string>; /** * The description of the transit router vpn attachment. */ description?: pulumi.Input<string>; /** * The status of the transit router. */ status?: pulumi.Input<string>; /** * Tags. */ tags?: pulumi.Input<pulumi.Input<inputs.transit_router.VpnAttachmentTag>[]>; /** * The id of the transit router vpn attachment. */ transitRouterAttachmentId?: pulumi.Input<string>; /** * The name of the transit router vpn attachment. */ transitRouterAttachmentName?: pulumi.Input<string>; /** * The id of the transit router. */ transitRouterId?: pulumi.Input<string>; /** * The update time. */ updateTime?: pulumi.Input<string>; /** * The ID of the IPSec connection. */ vpnConnectionId?: pulumi.Input<string>; /** * The ID of the availability zone. */ zoneId?: pulumi.Input<string>; } /** * The set of arguments for constructing a VpnAttachment resource. */ export interface VpnAttachmentArgs { /** * The description of the transit router vpn attachment. */ description?: pulumi.Input<string>; /** * Tags. */ tags?: pulumi.Input<pulumi.Input<inputs.transit_router.VpnAttachmentTag>[]>; /** * The name of the transit router vpn attachment. */ transitRouterAttachmentName?: pulumi.Input<string>; /** * The id of the transit router. */ transitRouterId: pulumi.Input<string>; /** * The ID of the IPSec connection. */ vpnConnectionId: pulumi.Input<string>; /** * The ID of the availability zone. */ zoneId: pulumi.Input<string>; }