Skip to content

Latest commit

 

History

History
238 lines (129 loc) · 5.88 KB

File metadata and controls

238 lines (129 loc) · 5.88 KB

LoadBalancer

Properties

Name Type Description Notes
Id Pointer to string [optional] [readonly]
Name Pointer to string [optional]
Description Pointer to string [optional]
Status Pointer to bool [optional]
Method Pointer to string [optional]
Pools Pointer to []LoadBalancerPool [optional] [readonly]
CreatedAt Pointer to time.Time [optional] [readonly]
UpdatedAt Pointer to time.Time [optional] [readonly]

Methods

NewLoadBalancer

func NewLoadBalancer() *LoadBalancer

NewLoadBalancer instantiates a new LoadBalancer 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

NewLoadBalancerWithDefaults

func NewLoadBalancerWithDefaults() *LoadBalancer

NewLoadBalancerWithDefaults instantiates a new LoadBalancer 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

GetId

func (o *LoadBalancer) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *LoadBalancer) GetIdOk() (*string, bool)

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

SetId

func (o *LoadBalancer) SetId(v string)

SetId sets Id field to given value.

HasId

func (o *LoadBalancer) HasId() bool

HasId returns a boolean if a field has been set.

GetName

func (o *LoadBalancer) GetName() string

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

GetNameOk

func (o *LoadBalancer) 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 *LoadBalancer) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *LoadBalancer) HasName() bool

HasName returns a boolean if a field has been set.

GetDescription

func (o *LoadBalancer) GetDescription() string

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

GetDescriptionOk

func (o *LoadBalancer) 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 *LoadBalancer) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *LoadBalancer) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetStatus

func (o *LoadBalancer) GetStatus() bool

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *LoadBalancer) GetStatusOk() (*bool, bool)

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

SetStatus

func (o *LoadBalancer) SetStatus(v bool)

SetStatus sets Status field to given value.

HasStatus

func (o *LoadBalancer) HasStatus() bool

HasStatus returns a boolean if a field has been set.

GetMethod

func (o *LoadBalancer) GetMethod() string

GetMethod returns the Method field if non-nil, zero value otherwise.

GetMethodOk

func (o *LoadBalancer) GetMethodOk() (*string, bool)

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

SetMethod

func (o *LoadBalancer) SetMethod(v string)

SetMethod sets Method field to given value.

HasMethod

func (o *LoadBalancer) HasMethod() bool

HasMethod returns a boolean if a field has been set.

GetPools

func (o *LoadBalancer) GetPools() []LoadBalancerPool

GetPools returns the Pools field if non-nil, zero value otherwise.

GetPoolsOk

func (o *LoadBalancer) GetPoolsOk() (*[]LoadBalancerPool, bool)

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

SetPools

func (o *LoadBalancer) SetPools(v []LoadBalancerPool)

SetPools sets Pools field to given value.

HasPools

func (o *LoadBalancer) HasPools() bool

HasPools returns a boolean if a field has been set.

GetCreatedAt

func (o *LoadBalancer) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.

GetCreatedAtOk

func (o *LoadBalancer) GetCreatedAtOk() (*time.Time, bool)

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

SetCreatedAt

func (o *LoadBalancer) SetCreatedAt(v time.Time)

SetCreatedAt sets CreatedAt field to given value.

HasCreatedAt

func (o *LoadBalancer) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

GetUpdatedAt

func (o *LoadBalancer) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field if non-nil, zero value otherwise.

GetUpdatedAtOk

func (o *LoadBalancer) GetUpdatedAtOk() (*time.Time, bool)

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

SetUpdatedAt

func (o *LoadBalancer) SetUpdatedAt(v time.Time)

SetUpdatedAt sets UpdatedAt field to given value.

HasUpdatedAt

func (o *LoadBalancer) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]