131 lines
4.6 KiB
Go
131 lines
4.6 KiB
Go
/*
|
|
STACKIT VPN API
|
|
|
|
The STACKIT VPN API provides endpoints to provision and manage VPN instances in your STACKIT project.
|
|
|
|
API version: 1alpha1
|
|
*/
|
|
|
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
|
|
|
package vpnalpha
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
// checks if the TunnelConfigurationPhase1AllOf type satisfies the MappedNullable interface at compile time
|
|
var _ MappedNullable = &TunnelConfigurationPhase1AllOf{}
|
|
|
|
/*
|
|
types and functions for rekeyTime
|
|
*/
|
|
|
|
// isInteger
|
|
type TunnelConfigurationPhase1AllOfGetRekeyTimeAttributeType = *int64
|
|
type TunnelConfigurationPhase1AllOfGetRekeyTimeArgType = int64
|
|
type TunnelConfigurationPhase1AllOfGetRekeyTimeRetType = int64
|
|
|
|
func getTunnelConfigurationPhase1AllOfGetRekeyTimeAttributeTypeOk(arg TunnelConfigurationPhase1AllOfGetRekeyTimeAttributeType) (ret TunnelConfigurationPhase1AllOfGetRekeyTimeRetType, ok bool) {
|
|
if arg == nil {
|
|
return ret, false
|
|
}
|
|
return *arg, true
|
|
}
|
|
|
|
func setTunnelConfigurationPhase1AllOfGetRekeyTimeAttributeType(arg *TunnelConfigurationPhase1AllOfGetRekeyTimeAttributeType, val TunnelConfigurationPhase1AllOfGetRekeyTimeRetType) {
|
|
*arg = &val
|
|
}
|
|
|
|
// TunnelConfigurationPhase1AllOf struct for TunnelConfigurationPhase1AllOf
|
|
type TunnelConfigurationPhase1AllOf struct {
|
|
// Time to schedule a IKE re-keying (in seconds).
|
|
// Can be cast to int32 without loss of precision.
|
|
RekeyTime TunnelConfigurationPhase1AllOfGetRekeyTimeAttributeType `json:"rekeyTime,omitempty"`
|
|
}
|
|
|
|
// NewTunnelConfigurationPhase1AllOf instantiates a new TunnelConfigurationPhase1AllOf 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
|
|
func NewTunnelConfigurationPhase1AllOf() *TunnelConfigurationPhase1AllOf {
|
|
this := TunnelConfigurationPhase1AllOf{}
|
|
return &this
|
|
}
|
|
|
|
// NewTunnelConfigurationPhase1AllOfWithDefaults instantiates a new TunnelConfigurationPhase1AllOf 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
|
|
func NewTunnelConfigurationPhase1AllOfWithDefaults() *TunnelConfigurationPhase1AllOf {
|
|
this := TunnelConfigurationPhase1AllOf{}
|
|
var rekeyTime int64 = 14400
|
|
this.RekeyTime = &rekeyTime
|
|
return &this
|
|
}
|
|
|
|
// GetRekeyTime returns the RekeyTime field value if set, zero value otherwise.
|
|
func (o *TunnelConfigurationPhase1AllOf) GetRekeyTime() (res TunnelConfigurationPhase1AllOfGetRekeyTimeRetType) {
|
|
res, _ = o.GetRekeyTimeOk()
|
|
return
|
|
}
|
|
|
|
// GetRekeyTimeOk returns a tuple with the RekeyTime field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *TunnelConfigurationPhase1AllOf) GetRekeyTimeOk() (ret TunnelConfigurationPhase1AllOfGetRekeyTimeRetType, ok bool) {
|
|
return getTunnelConfigurationPhase1AllOfGetRekeyTimeAttributeTypeOk(o.RekeyTime)
|
|
}
|
|
|
|
// HasRekeyTime returns a boolean if a field has been set.
|
|
func (o *TunnelConfigurationPhase1AllOf) HasRekeyTime() bool {
|
|
_, ok := o.GetRekeyTimeOk()
|
|
return ok
|
|
}
|
|
|
|
// SetRekeyTime gets a reference to the given int64 and assigns it to the RekeyTime field.
|
|
func (o *TunnelConfigurationPhase1AllOf) SetRekeyTime(v TunnelConfigurationPhase1AllOfGetRekeyTimeRetType) {
|
|
setTunnelConfigurationPhase1AllOfGetRekeyTimeAttributeType(&o.RekeyTime, v)
|
|
}
|
|
|
|
func (o TunnelConfigurationPhase1AllOf) ToMap() (map[string]interface{}, error) {
|
|
toSerialize := map[string]interface{}{}
|
|
if val, ok := getTunnelConfigurationPhase1AllOfGetRekeyTimeAttributeTypeOk(o.RekeyTime); ok {
|
|
toSerialize["RekeyTime"] = val
|
|
}
|
|
return toSerialize, nil
|
|
}
|
|
|
|
type NullableTunnelConfigurationPhase1AllOf struct {
|
|
value *TunnelConfigurationPhase1AllOf
|
|
isSet bool
|
|
}
|
|
|
|
func (v NullableTunnelConfigurationPhase1AllOf) Get() *TunnelConfigurationPhase1AllOf {
|
|
return v.value
|
|
}
|
|
|
|
func (v *NullableTunnelConfigurationPhase1AllOf) Set(val *TunnelConfigurationPhase1AllOf) {
|
|
v.value = val
|
|
v.isSet = true
|
|
}
|
|
|
|
func (v NullableTunnelConfigurationPhase1AllOf) IsSet() bool {
|
|
return v.isSet
|
|
}
|
|
|
|
func (v *NullableTunnelConfigurationPhase1AllOf) Unset() {
|
|
v.value = nil
|
|
v.isSet = false
|
|
}
|
|
|
|
func NewNullableTunnelConfigurationPhase1AllOf(val *TunnelConfigurationPhase1AllOf) *NullableTunnelConfigurationPhase1AllOf {
|
|
return &NullableTunnelConfigurationPhase1AllOf{value: val, isSet: true}
|
|
}
|
|
|
|
func (v NullableTunnelConfigurationPhase1AllOf) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(v.value)
|
|
}
|
|
|
|
func (v *NullableTunnelConfigurationPhase1AllOf) UnmarshalJSON(src []byte) error {
|
|
v.isSet = true
|
|
return json.Unmarshal(src, &v.value)
|
|
}
|