Show / Hide Table of Contents

Class SiteConnectionState

Inheritance
System.Object
InputArgs
ResourceArgs
SiteConnectionState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.OpenStack.VPNaaS
Assembly: Pulumi.OpenStack.dll
Syntax
public sealed class SiteConnectionState : ResourceArgs

Constructors

View Source

SiteConnectionState()

Declaration
public SiteConnectionState()

Properties

View Source

AdminStateUp

The administrative state of the resource. Can either be up(true) or down(false). Changing this updates the administrative state of the existing connection.

Declaration
public Input<bool> AdminStateUp { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Description

The human-readable description for the connection. Changing this updates the description of the existing connection.

Declaration
public Input<string> Description { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Dpds

A dictionary with dead peer detection (DPD) protocol controls.

  • action - (Optional) The dead peer detection (DPD) action. A valid value is clear, hold, restart, disabled, or restart-by-peer. Default value is hold.
Declaration
public InputList<SiteConnectionDpdGetArgs> Dpds { get; set; }
Property Value
Type Description
InputList<SiteConnectionDpdGetArgs>
View Source

IkepolicyId

The ID of the IKE policy. Changing this creates a new connection.

Declaration
public Input<string> IkepolicyId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Initiator

A valid value is response-only or bi-directional. Default is bi-directional.

Declaration
public Input<string> Initiator { get; set; }
Property Value
Type Description
Input<System.String>
View Source

IpsecpolicyId

The ID of the IPsec policy. Changing this creates a new connection.

Declaration
public Input<string> IpsecpolicyId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

LocalEpGroupId

The ID for the endpoint group that contains private subnets for the local side of the connection. You must specify this parameter with the peer_ep_group_id parameter unless in backward- compatible mode where peer_cidrs is provided with a subnet_id for the VPN service. Changing this updates the existing connection.

Declaration
public Input<string> LocalEpGroupId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

LocalId

An ID to be used instead of the external IP address for a virtual router used in traffic between instances on different networks in east-west traffic. Most often, local ID would be domain name, email address, etc. If this is not configured then the external IP address will be used as the ID.

Declaration
public Input<string> LocalId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Mtu

The maximum transmission unit (MTU) value to address fragmentation. Minimum value is 68 for IPv4, and 1280 for IPv6.

Declaration
public Input<int> Mtu { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Name

The name of the connection. Changing this updates the name of the existing connection.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PeerAddress

The peer gateway public IPv4 or IPv6 address or FQDN.

Declaration
public Input<string> PeerAddress { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PeerCidrs

Unique list of valid peer private CIDRs in the form < net_address > / < prefix > .

Declaration
public InputList<string> PeerCidrs { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

PeerEpGroupId

The ID for the endpoint group that contains private CIDRs in the form < net_address > / < prefix > for the peer side of the connection. You must specify this parameter with the local_ep_group_id parameter unless in backward-compatible mode where peer_cidrs is provided with a subnet_id for the VPN service.

Declaration
public Input<string> PeerEpGroupId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PeerId

The peer router identity for authentication. A valid value is an IPv4 address, IPv6 address, e-mail address, key ID, or FQDN. Typically, this value matches the peer_address value. Changing this updates the existing policy.

Declaration
public Input<string> PeerId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Psk

The pre-shared key. A valid value is any string.

Declaration
public Input<string> Psk { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Region

The region in which to obtain the V2 Networking client. A Networking client is needed to create an IPSec site connection. If omitted, the region argument of the provider is used. Changing this creates a new site connection.

Declaration
public Input<string> Region { get; set; }
Property Value
Type Description
Input<System.String>
View Source

TenantId

The owner of the connection. Required if admin wants to create a connection for another project. Changing this creates a new connection.

Declaration
public Input<string> TenantId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ValueSpecs

Map of additional options.

Declaration
public InputMap<object> ValueSpecs { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

VpnserviceId

The ID of the VPN service. Changing this creates a new connection.

Declaration
public Input<string> VpnserviceId { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.