## Description
<!-- **Please link some issue here describing what you are trying to achieve.**
In case there is no issue present for your PR, please consider creating one.
At least please give us some description what you are trying to achieve and why your change is needed. -->
relates to #1234
## Checklist
- [ ] Issue was linked above
- [ ] Code format was applied: `make fmt`
- [ ] Examples were added / adjusted (see `examples/` directory)
- [x] Docs are up-to-date: `make generate-docs` (will be checked by CI)
- [ ] Unit tests got implemented or updated
- [ ] Acceptance tests got implemented or updated (see e.g. [here](f5f99d1709/stackit/internal/services/dns/dns_acc_test.go))
- [x] Unit tests are passing: `make test` (will be checked by CI)
- [x] No linter issues: `make lint` (will be checked by CI)
Reviewed-on: #4
Reviewed-by: Andre_Harms <andre.harms@stackit.cloud>
Co-authored-by: Marcel S. Henselin <marcel.henselin@stackit.cloud>
Co-committed-by: Marcel S. Henselin <marcel.henselin@stackit.cloud>
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)
|
|
}
|