SecondaryZone
Last updated
Was this helpful?
ZoneName
string
The zone name
Description
Pointer to string
The hosted zone is used for...
[optional]
PrimaryIps
[]string
Indicates IP addresses of primary nameservers for a secondary zone. Accepts IPv4 and IPv6 addresses
func NewSecondaryZone(zoneName string, primaryIps []string, ) *SecondaryZone
NewSecondaryZone instantiates a new SecondaryZone 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 NewSecondaryZoneWithDefaults() *SecondaryZone
NewSecondaryZoneWithDefaults instantiates a new SecondaryZone 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 (o *SecondaryZone) GetZoneName() string
GetZoneName returns the ZoneName field if non-nil, zero value otherwise.
func (o *SecondaryZone) GetZoneNameOk() (*string, bool)
GetZoneNameOk returns a tuple with the ZoneName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SecondaryZone) SetZoneName(v string)
SetZoneName sets ZoneName field to given value.
func (o *SecondaryZone) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *SecondaryZone) 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.
func (o *SecondaryZone) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *SecondaryZone) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *SecondaryZone) GetPrimaryIps() []string
GetPrimaryIps returns the PrimaryIps field if non-nil, zero value otherwise.
func (o *SecondaryZone) GetPrimaryIpsOk() (*[]string, bool)
GetPrimaryIpsOk returns a tuple with the PrimaryIps field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SecondaryZone) SetPrimaryIps(v []string)
SetPrimaryIps sets PrimaryIps field to given value.
Last updated
Was this helpful?
Was this helpful?