IPSecGateway

Properties

Name
Type
Description
Notes

Name

string

The human readable name of your IPSecGateway.

Description

Pointer to string

Human readable description of the IPSecGateway.

[optional]

GatewayIP

string

Public IP address to be assigned to the gateway. Note: This must be an IP address in the same datacenter as the connections.

Connections

The network connection for your gateway. Note: all connections must belong to the same datacenterId. There is a limit to the total number of connections. Please refer to product documentation.

Version

Pointer to string

The IKE version that is permitted for the VPN tunnels.\ Options: - IKEv2

[optional] [default to "IKEv2"]

Tier

Pointer to string

Gateway performance options. See product documentation for full details.\ Options: - STANDARD - STANDARD_HA - ENHANCED - ENHANCED_HA - PREMIUM - PREMIUM_HA

[optional] [default to "STANDARD"]

MaintenanceWindow

[optional]

Methods

NewIPSecGateway

func NewIPSecGateway(name string, gatewayIP string, connections []Connection, ) *IPSecGateway

NewIPSecGateway instantiates a new IPSecGateway object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewIPSecGatewayWithDefaults

func NewIPSecGatewayWithDefaults() *IPSecGateway

NewIPSecGatewayWithDefaults instantiates a new IPSecGateway object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetName

func (o *IPSecGateway) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *IPSecGateway) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetName

func (o *IPSecGateway) SetName(v string)

SetName sets Name field to given value.

GetDescription

func (o *IPSecGateway) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *IPSecGateway) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetDescription

func (o *IPSecGateway) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *IPSecGateway) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetGatewayIP

func (o *IPSecGateway) GetGatewayIP() string

GetGatewayIP returns the GatewayIP field if non-nil, zero value otherwise.

GetGatewayIPOk

func (o *IPSecGateway) GetGatewayIPOk() (*string, bool)

GetGatewayIPOk returns a tuple with the GatewayIP field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetGatewayIP

func (o *IPSecGateway) SetGatewayIP(v string)

SetGatewayIP sets GatewayIP field to given value.

GetConnections

func (o *IPSecGateway) GetConnections() []Connection

GetConnections returns the Connections field if non-nil, zero value otherwise.

GetConnectionsOk

func (o *IPSecGateway) GetConnectionsOk() (*[]Connection, bool)

GetConnectionsOk returns a tuple with the Connections field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetConnections

func (o *IPSecGateway) SetConnections(v []Connection)

SetConnections sets Connections field to given value.

GetVersion

func (o *IPSecGateway) GetVersion() string

GetVersion returns the Version field if non-nil, zero value otherwise.

GetVersionOk

func (o *IPSecGateway) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetVersion

func (o *IPSecGateway) SetVersion(v string)

SetVersion sets Version field to given value.

HasVersion

func (o *IPSecGateway) HasVersion() bool

HasVersion returns a boolean if a field has been set.

GetTier

func (o *IPSecGateway) GetTier() string

GetTier returns the Tier field if non-nil, zero value otherwise.

GetTierOk

func (o *IPSecGateway) GetTierOk() (*string, bool)

GetTierOk returns a tuple with the Tier field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetTier

func (o *IPSecGateway) SetTier(v string)

SetTier sets Tier field to given value.

HasTier

func (o *IPSecGateway) HasTier() bool

HasTier returns a boolean if a field has been set.

GetMaintenanceWindow

func (o *IPSecGateway) GetMaintenanceWindow() MaintenanceWindow

GetMaintenanceWindow returns the MaintenanceWindow field if non-nil, zero value otherwise.

GetMaintenanceWindowOk

func (o *IPSecGateway) GetMaintenanceWindowOk() (*MaintenanceWindow, bool)

GetMaintenanceWindowOk returns a tuple with the MaintenanceWindow field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetMaintenanceWindow

func (o *IPSecGateway) SetMaintenanceWindow(v MaintenanceWindow)

SetMaintenanceWindow sets MaintenanceWindow field to given value.

HasMaintenanceWindow

func (o *IPSecGateway) HasMaintenanceWindow() bool

HasMaintenanceWindow returns a boolean if a field has been set.

Last updated