Volcengine v0.0.27 published on Tuesday, Dec 10, 2024 by Volcengine
volcengine.vpn.Gateways
Explore with Pulumi AI
Use this data source to query detailed information of vpn gateways
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
import * as volcengine from "@volcengine/pulumi";
const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
    vpcName: "acc-test-vpc",
    cidrBlock: "172.16.0.0/16",
});
const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
    subnetName: "acc-test-subnet",
    cidrBlock: "172.16.0.0/24",
    zoneId: "cn-beijing-a",
    vpcId: fooVpc.id,
});
const fooGateway = new volcengine.vpn.Gateway("fooGateway", {
    vpcId: fooVpc.id,
    subnetId: fooSubnet.id,
    bandwidth: 20,
    vpnGatewayName: "acc-test",
    description: "acc-test",
    period: 2,
    projectName: "default",
});
const fooGateways = volcengine.vpn.GatewaysOutput({
    ids: [fooGateway.id],
});
import pulumi
import pulumi_volcengine as volcengine
foo_vpc = volcengine.vpc.Vpc("fooVpc",
    vpc_name="acc-test-vpc",
    cidr_block="172.16.0.0/16")
foo_subnet = volcengine.vpc.Subnet("fooSubnet",
    subnet_name="acc-test-subnet",
    cidr_block="172.16.0.0/24",
    zone_id="cn-beijing-a",
    vpc_id=foo_vpc.id)
foo_gateway = volcengine.vpn.Gateway("fooGateway",
    vpc_id=foo_vpc.id,
    subnet_id=foo_subnet.id,
    bandwidth=20,
    vpn_gateway_name="acc-test",
    description="acc-test",
    period=2,
    project_name="default")
foo_gateways = volcengine.vpn.gateways_output(ids=[foo_gateway.id])
package main
import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpn"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		fooVpc, err := vpc.NewVpc(ctx, "fooVpc", &vpc.VpcArgs{
			VpcName:   pulumi.String("acc-test-vpc"),
			CidrBlock: pulumi.String("172.16.0.0/16"),
		})
		if err != nil {
			return err
		}
		fooSubnet, err := vpc.NewSubnet(ctx, "fooSubnet", &vpc.SubnetArgs{
			SubnetName: pulumi.String("acc-test-subnet"),
			CidrBlock:  pulumi.String("172.16.0.0/24"),
			ZoneId:     pulumi.String("cn-beijing-a"),
			VpcId:      fooVpc.ID(),
		})
		if err != nil {
			return err
		}
		fooGateway, err := vpn.NewGateway(ctx, "fooGateway", &vpn.GatewayArgs{
			VpcId:          fooVpc.ID(),
			SubnetId:       fooSubnet.ID(),
			Bandwidth:      pulumi.Int(20),
			VpnGatewayName: pulumi.String("acc-test"),
			Description:    pulumi.String("acc-test"),
			Period:         pulumi.Int(2),
			ProjectName:    pulumi.String("default"),
		})
		if err != nil {
			return err
		}
		_ = vpn.GatewaysOutput(ctx, vpn.GatewaysOutputArgs{
			Ids: pulumi.StringArray{
				fooGateway.ID(),
			},
		}, nil)
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() => 
{
    var fooVpc = new Volcengine.Vpc.Vpc("fooVpc", new()
    {
        VpcName = "acc-test-vpc",
        CidrBlock = "172.16.0.0/16",
    });
    var fooSubnet = new Volcengine.Vpc.Subnet("fooSubnet", new()
    {
        SubnetName = "acc-test-subnet",
        CidrBlock = "172.16.0.0/24",
        ZoneId = "cn-beijing-a",
        VpcId = fooVpc.Id,
    });
    var fooGateway = new Volcengine.Vpn.Gateway("fooGateway", new()
    {
        VpcId = fooVpc.Id,
        SubnetId = fooSubnet.Id,
        Bandwidth = 20,
        VpnGatewayName = "acc-test",
        Description = "acc-test",
        Period = 2,
        ProjectName = "default",
    });
    var fooGateways = Volcengine.Vpn.Gateways.Invoke(new()
    {
        Ids = new[]
        {
            fooGateway.Id,
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.vpc.Vpc;
import com.pulumi.volcengine.vpc.VpcArgs;
import com.pulumi.volcengine.vpc.Subnet;
import com.pulumi.volcengine.vpc.SubnetArgs;
import com.pulumi.volcengine.vpn.Gateway;
import com.pulumi.volcengine.vpn.GatewayArgs;
import com.pulumi.volcengine.vpn.VpnFunctions;
import com.pulumi.volcengine.vpn.inputs.GatewaysArgs;
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 fooVpc = new Vpc("fooVpc", VpcArgs.builder()        
            .vpcName("acc-test-vpc")
            .cidrBlock("172.16.0.0/16")
            .build());
        var fooSubnet = new Subnet("fooSubnet", SubnetArgs.builder()        
            .subnetName("acc-test-subnet")
            .cidrBlock("172.16.0.0/24")
            .zoneId("cn-beijing-a")
            .vpcId(fooVpc.id())
            .build());
        var fooGateway = new Gateway("fooGateway", GatewayArgs.builder()        
            .vpcId(fooVpc.id())
            .subnetId(fooSubnet.id())
            .bandwidth(20)
            .vpnGatewayName("acc-test")
            .description("acc-test")
            .period(2)
            .projectName("default")
            .build());
        final var fooGateways = VpnFunctions.Gateways(GatewaysArgs.builder()
            .ids(fooGateway.id())
            .build());
    }
}
resources:
  fooVpc:
    type: volcengine:vpc:Vpc
    properties:
      vpcName: acc-test-vpc
      cidrBlock: 172.16.0.0/16
  fooSubnet:
    type: volcengine:vpc:Subnet
    properties:
      subnetName: acc-test-subnet
      cidrBlock: 172.16.0.0/24
      zoneId: cn-beijing-a
      vpcId: ${fooVpc.id}
  fooGateway:
    type: volcengine:vpn:Gateway
    properties:
      vpcId: ${fooVpc.id}
      subnetId: ${fooSubnet.id}
      bandwidth: 20
      vpnGatewayName: acc-test
      description: acc-test
      period: 2
      projectName: default
variables:
  fooGateways:
    fn::invoke:
      Function: volcengine:vpn:Gateways
      Arguments:
        ids:
          - ${fooGateway.id}
Using Gateways
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function gateways(args: GatewaysArgs, opts?: InvokeOptions): Promise<GatewaysResult>
function gatewaysOutput(args: GatewaysOutputArgs, opts?: InvokeOptions): Output<GatewaysResult>def gateways(ids: Optional[Sequence[str]] = None,
             ip_address: Optional[str] = None,
             ipsec_enabled: Optional[bool] = None,
             name_regex: Optional[str] = None,
             output_file: Optional[str] = None,
             project_name: Optional[str] = None,
             ssl_enabled: Optional[bool] = None,
             status: Optional[str] = None,
             subnet_id: Optional[str] = None,
             tags: Optional[Sequence[GatewaysTag]] = None,
             vpc_id: Optional[str] = None,
             vpn_gateway_names: Optional[Sequence[str]] = None,
             opts: Optional[InvokeOptions] = None) -> GatewaysResult
def gateways_output(ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
             ip_address: Optional[pulumi.Input[str]] = None,
             ipsec_enabled: Optional[pulumi.Input[bool]] = None,
             name_regex: Optional[pulumi.Input[str]] = None,
             output_file: Optional[pulumi.Input[str]] = None,
             project_name: Optional[pulumi.Input[str]] = None,
             ssl_enabled: Optional[pulumi.Input[bool]] = None,
             status: Optional[pulumi.Input[str]] = None,
             subnet_id: Optional[pulumi.Input[str]] = None,
             tags: Optional[pulumi.Input[Sequence[pulumi.Input[GatewaysTagArgs]]]] = None,
             vpc_id: Optional[pulumi.Input[str]] = None,
             vpn_gateway_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
             opts: Optional[InvokeOptions] = None) -> Output[GatewaysResult]func Gateways(ctx *Context, args *GatewaysArgs, opts ...InvokeOption) (*GatewaysResult, error)
func GatewaysOutput(ctx *Context, args *GatewaysOutputArgs, opts ...InvokeOption) GatewaysResultOutputpublic static class Gateways 
{
    public static Task<GatewaysResult> InvokeAsync(GatewaysArgs args, InvokeOptions? opts = null)
    public static Output<GatewaysResult> Invoke(GatewaysInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GatewaysResult> gateways(GatewaysArgs args, InvokeOptions options)
public static Output<GatewaysResult> gateways(GatewaysArgs args, InvokeOptions options)
fn::invoke:
  function: volcengine:vpn:Gateways
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Ids List<string>
- A list of VPN gateway ids.
- IpAddress string
- A IP address of the VPN gateway.
- IpsecEnabled bool
- Whether IPSec is enabled.
- NameRegex string
- A Name Regex of VPN gateway.
- OutputFile string
- File name where to save data source results.
- ProjectName string
- The project name of the VPN gateway.
- SslEnabled bool
- Whether ssl is enabled.
- Status string
- The status of the VPN gateway.
- SubnetId string
- A subnet ID of the VPN gateway.
- 
List<GatewaysTag> 
- Tags.
- VpcId string
- A VPC ID of the VPN gateway.
- VpnGateway List<string>Names 
- A list of VPN gateway names.
- Ids []string
- A list of VPN gateway ids.
- IpAddress string
- A IP address of the VPN gateway.
- IpsecEnabled bool
- Whether IPSec is enabled.
- NameRegex string
- A Name Regex of VPN gateway.
- OutputFile string
- File name where to save data source results.
- ProjectName string
- The project name of the VPN gateway.
- SslEnabled bool
- Whether ssl is enabled.
- Status string
- The status of the VPN gateway.
- SubnetId string
- A subnet ID of the VPN gateway.
- 
[]GatewaysTag 
- Tags.
- VpcId string
- A VPC ID of the VPN gateway.
- VpnGateway []stringNames 
- A list of VPN gateway names.
- ids List<String>
- A list of VPN gateway ids.
- ipAddress String
- A IP address of the VPN gateway.
- ipsecEnabled Boolean
- Whether IPSec is enabled.
- nameRegex String
- A Name Regex of VPN gateway.
- outputFile String
- File name where to save data source results.
- projectName String
- The project name of the VPN gateway.
- sslEnabled Boolean
- Whether ssl is enabled.
- status String
- The status of the VPN gateway.
- subnetId String
- A subnet ID of the VPN gateway.
- 
List<GatewaysTag> 
- Tags.
- vpcId String
- A VPC ID of the VPN gateway.
- vpnGateway List<String>Names 
- A list of VPN gateway names.
- ids string[]
- A list of VPN gateway ids.
- ipAddress string
- A IP address of the VPN gateway.
- ipsecEnabled boolean
- Whether IPSec is enabled.
- nameRegex string
- A Name Regex of VPN gateway.
- outputFile string
- File name where to save data source results.
- projectName string
- The project name of the VPN gateway.
- sslEnabled boolean
- Whether ssl is enabled.
- status string
- The status of the VPN gateway.
- subnetId string
- A subnet ID of the VPN gateway.
- 
GatewaysTag[] 
- Tags.
- vpcId string
- A VPC ID of the VPN gateway.
- vpnGateway string[]Names 
- A list of VPN gateway names.
- ids Sequence[str]
- A list of VPN gateway ids.
- ip_address str
- A IP address of the VPN gateway.
- ipsec_enabled bool
- Whether IPSec is enabled.
- name_regex str
- A Name Regex of VPN gateway.
- output_file str
- File name where to save data source results.
- project_name str
- The project name of the VPN gateway.
- ssl_enabled bool
- Whether ssl is enabled.
- status str
- The status of the VPN gateway.
- subnet_id str
- A subnet ID of the VPN gateway.
- 
Sequence[GatewaysTag] 
- Tags.
- vpc_id str
- A VPC ID of the VPN gateway.
- vpn_gateway_ Sequence[str]names 
- A list of VPN gateway names.
- ids List<String>
- A list of VPN gateway ids.
- ipAddress String
- A IP address of the VPN gateway.
- ipsecEnabled Boolean
- Whether IPSec is enabled.
- nameRegex String
- A Name Regex of VPN gateway.
- outputFile String
- File name where to save data source results.
- projectName String
- The project name of the VPN gateway.
- sslEnabled Boolean
- Whether ssl is enabled.
- status String
- The status of the VPN gateway.
- subnetId String
- A subnet ID of the VPN gateway.
- List<Property Map>
- Tags.
- vpcId String
- A VPC ID of the VPN gateway.
- vpnGateway List<String>Names 
- A list of VPN gateway names.
Gateways Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- TotalCount int
- The total count of VPN gateway query.
- VpnGateways List<GatewaysVpn Gateway> 
- The collection of VPN gateway query.
- Ids List<string>
- IpAddress string
- The IP address of the VPN gateway.
- IpsecEnabled bool
- Whether ipsec is enabled.
- NameRegex string
- OutputFile string
- ProjectName string
- The name of project.
- SslEnabled bool
- Whether ssl is enabled.
- Status string
- The status of the VPN gateway.
- SubnetId string
- 
List<GatewaysTag> 
- Tags.
- VpcId string
- The VPC ID of the VPN gateway.
- VpnGateway List<string>Names 
- Id string
- The provider-assigned unique ID for this managed resource.
- TotalCount int
- The total count of VPN gateway query.
- VpnGateways []GatewaysVpn Gateway 
- The collection of VPN gateway query.
- Ids []string
- IpAddress string
- The IP address of the VPN gateway.
- IpsecEnabled bool
- Whether ipsec is enabled.
- NameRegex string
- OutputFile string
- ProjectName string
- The name of project.
- SslEnabled bool
- Whether ssl is enabled.
- Status string
- The status of the VPN gateway.
- SubnetId string
- 
[]GatewaysTag 
- Tags.
- VpcId string
- The VPC ID of the VPN gateway.
- VpnGateway []stringNames 
- id String
- The provider-assigned unique ID for this managed resource.
- totalCount Integer
- The total count of VPN gateway query.
- vpnGateways List<GatewaysVpn Gateway> 
- The collection of VPN gateway query.
- ids List<String>
- ipAddress String
- The IP address of the VPN gateway.
- ipsecEnabled Boolean
- Whether ipsec is enabled.
- nameRegex String
- outputFile String
- projectName String
- The name of project.
- sslEnabled Boolean
- Whether ssl is enabled.
- status String
- The status of the VPN gateway.
- subnetId String
- 
List<GatewaysTag> 
- Tags.
- vpcId String
- The VPC ID of the VPN gateway.
- vpnGateway List<String>Names 
- id string
- The provider-assigned unique ID for this managed resource.
- totalCount number
- The total count of VPN gateway query.
- vpnGateways GatewaysVpn Gateway[] 
- The collection of VPN gateway query.
- ids string[]
- ipAddress string
- The IP address of the VPN gateway.
- ipsecEnabled boolean
- Whether ipsec is enabled.
- nameRegex string
- outputFile string
- projectName string
- The name of project.
- sslEnabled boolean
- Whether ssl is enabled.
- status string
- The status of the VPN gateway.
- subnetId string
- 
GatewaysTag[] 
- Tags.
- vpcId string
- The VPC ID of the VPN gateway.
- vpnGateway string[]Names 
- id str
- The provider-assigned unique ID for this managed resource.
- total_count int
- The total count of VPN gateway query.
- vpn_gateways Sequence[GatewaysVpn Gateway] 
- The collection of VPN gateway query.
- ids Sequence[str]
- ip_address str
- The IP address of the VPN gateway.
- ipsec_enabled bool
- Whether ipsec is enabled.
- name_regex str
- output_file str
- project_name str
- The name of project.
- ssl_enabled bool
- Whether ssl is enabled.
- status str
- The status of the VPN gateway.
- subnet_id str
- 
Sequence[GatewaysTag] 
- Tags.
- vpc_id str
- The VPC ID of the VPN gateway.
- vpn_gateway_ Sequence[str]names 
- id String
- The provider-assigned unique ID for this managed resource.
- totalCount Number
- The total count of VPN gateway query.
- vpnGateways List<Property Map>
- The collection of VPN gateway query.
- ids List<String>
- ipAddress String
- The IP address of the VPN gateway.
- ipsecEnabled Boolean
- Whether ipsec is enabled.
- nameRegex String
- outputFile String
- projectName String
- The name of project.
- sslEnabled Boolean
- Whether ssl is enabled.
- status String
- The status of the VPN gateway.
- subnetId String
- List<Property Map>
- Tags.
- vpcId String
- The VPC ID of the VPN gateway.
- vpnGateway List<String>Names 
Supporting Types
GatewaysTag 
GatewaysVpnGateway  
- AccountId string
- The account ID of the VPN gateway.
- Bandwidth int
- The bandwidth of the VPN gateway.
- BillingType string
- The BillingType of the VPN gateway.
- BusinessStatus string
- The business status of the VPN gateway.
- ConnectionCount int
- The connection count of the VPN gateway.
- CreationTime string
- The create time of VPN gateway.
- DeletedTime string
- The deleted time of the VPN gateway.
- Description string
- The description of the VPN gateway.
- ExpiredTime string
- The expired time of the VPN gateway.
- Id string
- The ID of the VPN gateway.
- IpAddress string
- A IP address of the VPN gateway.
- IpsecEnabled bool
- Whether IPSec is enabled.
- LockReason string
- The lock reason of the VPN gateway.
- ProjectName string
- The project name of the VPN gateway.
- RouteCount int
- The route count of the VPN gateway.
- SslEnabled bool
- Whether ssl is enabled.
- SslMax intConnections 
- The max connections of ssl.
- Status string
- The status of the VPN gateway.
- 
List<GatewaysVpn Gateway Tag> 
- Tags.
- UpdateTime string
- The update time of VPN gateway.
- VpcId string
- A VPC ID of the VPN gateway.
- VpnGateway stringId 
- The ID of the VPN gateway.
- VpnGateway stringName 
- The name of the VPN gateway.
- SubnetId string
- A subnet ID of the VPN gateway.
- AccountId string
- The account ID of the VPN gateway.
- Bandwidth int
- The bandwidth of the VPN gateway.
- BillingType string
- The BillingType of the VPN gateway.
- BusinessStatus string
- The business status of the VPN gateway.
- ConnectionCount int
- The connection count of the VPN gateway.
- CreationTime string
- The create time of VPN gateway.
- DeletedTime string
- The deleted time of the VPN gateway.
- Description string
- The description of the VPN gateway.
- ExpiredTime string
- The expired time of the VPN gateway.
- Id string
- The ID of the VPN gateway.
- IpAddress string
- A IP address of the VPN gateway.
- IpsecEnabled bool
- Whether IPSec is enabled.
- LockReason string
- The lock reason of the VPN gateway.
- ProjectName string
- The project name of the VPN gateway.
- RouteCount int
- The route count of the VPN gateway.
- SslEnabled bool
- Whether ssl is enabled.
- SslMax intConnections 
- The max connections of ssl.
- Status string
- The status of the VPN gateway.
- 
[]GatewaysVpn Gateway Tag 
- Tags.
- UpdateTime string
- The update time of VPN gateway.
- VpcId string
- A VPC ID of the VPN gateway.
- VpnGateway stringId 
- The ID of the VPN gateway.
- VpnGateway stringName 
- The name of the VPN gateway.
- SubnetId string
- A subnet ID of the VPN gateway.
- accountId String
- The account ID of the VPN gateway.
- bandwidth Integer
- The bandwidth of the VPN gateway.
- billingType String
- The BillingType of the VPN gateway.
- businessStatus String
- The business status of the VPN gateway.
- connectionCount Integer
- The connection count of the VPN gateway.
- creationTime String
- The create time of VPN gateway.
- deletedTime String
- The deleted time of the VPN gateway.
- description String
- The description of the VPN gateway.
- expiredTime String
- The expired time of the VPN gateway.
- id String
- The ID of the VPN gateway.
- ipAddress String
- A IP address of the VPN gateway.
- ipsecEnabled Boolean
- Whether IPSec is enabled.
- lockReason String
- The lock reason of the VPN gateway.
- projectName String
- The project name of the VPN gateway.
- routeCount Integer
- The route count of the VPN gateway.
- sslEnabled Boolean
- Whether ssl is enabled.
- sslMax IntegerConnections 
- The max connections of ssl.
- status String
- The status of the VPN gateway.
- 
List<GatewaysVpn Gateway Tag> 
- Tags.
- updateTime String
- The update time of VPN gateway.
- vpcId String
- A VPC ID of the VPN gateway.
- vpnGateway StringId 
- The ID of the VPN gateway.
- vpnGateway StringName 
- The name of the VPN gateway.
- subnetId String
- A subnet ID of the VPN gateway.
- accountId string
- The account ID of the VPN gateway.
- bandwidth number
- The bandwidth of the VPN gateway.
- billingType string
- The BillingType of the VPN gateway.
- businessStatus string
- The business status of the VPN gateway.
- connectionCount number
- The connection count of the VPN gateway.
- creationTime string
- The create time of VPN gateway.
- deletedTime string
- The deleted time of the VPN gateway.
- description string
- The description of the VPN gateway.
- expiredTime string
- The expired time of the VPN gateway.
- id string
- The ID of the VPN gateway.
- ipAddress string
- A IP address of the VPN gateway.
- ipsecEnabled boolean
- Whether IPSec is enabled.
- lockReason string
- The lock reason of the VPN gateway.
- projectName string
- The project name of the VPN gateway.
- routeCount number
- The route count of the VPN gateway.
- sslEnabled boolean
- Whether ssl is enabled.
- sslMax numberConnections 
- The max connections of ssl.
- status string
- The status of the VPN gateway.
- 
GatewaysVpn Gateway Tag[] 
- Tags.
- updateTime string
- The update time of VPN gateway.
- vpcId string
- A VPC ID of the VPN gateway.
- vpnGateway stringId 
- The ID of the VPN gateway.
- vpnGateway stringName 
- The name of the VPN gateway.
- subnetId string
- A subnet ID of the VPN gateway.
- account_id str
- The account ID of the VPN gateway.
- bandwidth int
- The bandwidth of the VPN gateway.
- billing_type str
- The BillingType of the VPN gateway.
- business_status str
- The business status of the VPN gateway.
- connection_count int
- The connection count of the VPN gateway.
- creation_time str
- The create time of VPN gateway.
- deleted_time str
- The deleted time of the VPN gateway.
- description str
- The description of the VPN gateway.
- expired_time str
- The expired time of the VPN gateway.
- id str
- The ID of the VPN gateway.
- ip_address str
- A IP address of the VPN gateway.
- ipsec_enabled bool
- Whether IPSec is enabled.
- lock_reason str
- The lock reason of the VPN gateway.
- project_name str
- The project name of the VPN gateway.
- route_count int
- The route count of the VPN gateway.
- ssl_enabled bool
- Whether ssl is enabled.
- ssl_max_ intconnections 
- The max connections of ssl.
- status str
- The status of the VPN gateway.
- 
Sequence[GatewaysVpn Gateway Tag] 
- Tags.
- update_time str
- The update time of VPN gateway.
- vpc_id str
- A VPC ID of the VPN gateway.
- vpn_gateway_ strid 
- The ID of the VPN gateway.
- vpn_gateway_ strname 
- The name of the VPN gateway.
- subnet_id str
- A subnet ID of the VPN gateway.
- accountId String
- The account ID of the VPN gateway.
- bandwidth Number
- The bandwidth of the VPN gateway.
- billingType String
- The BillingType of the VPN gateway.
- businessStatus String
- The business status of the VPN gateway.
- connectionCount Number
- The connection count of the VPN gateway.
- creationTime String
- The create time of VPN gateway.
- deletedTime String
- The deleted time of the VPN gateway.
- description String
- The description of the VPN gateway.
- expiredTime String
- The expired time of the VPN gateway.
- id String
- The ID of the VPN gateway.
- ipAddress String
- A IP address of the VPN gateway.
- ipsecEnabled Boolean
- Whether IPSec is enabled.
- lockReason String
- The lock reason of the VPN gateway.
- projectName String
- The project name of the VPN gateway.
- routeCount Number
- The route count of the VPN gateway.
- sslEnabled Boolean
- Whether ssl is enabled.
- sslMax NumberConnections 
- The max connections of ssl.
- status String
- The status of the VPN gateway.
- List<Property Map>
- Tags.
- updateTime String
- The update time of VPN gateway.
- vpcId String
- A VPC ID of the VPN gateway.
- vpnGateway StringId 
- The ID of the VPN gateway.
- vpnGateway StringName 
- The name of the VPN gateway.
- subnetId String
- A subnet ID of the VPN gateway.
GatewaysVpnGatewayTag   
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the volcengineTerraform Provider.