KubernetesNodes
Properties
Name | Type | Description | Notes |
---|---|---|---|
Id | Pointer to string | Unique representation for Kubernetes Node Pool as a collection on a resource. | [optional] [readonly] |
Type | Pointer to string | The type of resource within a collection | [optional] [readonly] |
Href | Pointer to string | URL to the collection representation (absolute path) | [optional] [readonly] |
Items | Pointer to []KubernetesNode | Array of items in that collection | [optional] [readonly] |
Methods
NewKubernetesNodes
func NewKubernetesNodes() *KubernetesNodes
NewKubernetesNodes instantiates a new KubernetesNodes 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
NewKubernetesNodesWithDefaults
func NewKubernetesNodesWithDefaults() *KubernetesNodes
NewKubernetesNodesWithDefaults instantiates a new KubernetesNodes 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 *KubernetesNodes) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
GetIdOk
func (o *KubernetesNodes) 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 *KubernetesNodes) SetId(v string)
SetId sets Id field to given value.
HasId
func (o *KubernetesNodes) HasId() bool
HasId returns a boolean if a field has been set.
GetType
func (o *KubernetesNodes) GetType() string
GetType returns the Type field if non-nil, zero value otherwise.
GetTypeOk
func (o *KubernetesNodes) GetTypeOk() (*string, bool)
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetType
func (o *KubernetesNodes) SetType(v string)
SetType sets Type field to given value.
HasType
func (o *KubernetesNodes) HasType() bool
HasType returns a boolean if a field has been set.
GetHref
func (o *KubernetesNodes) GetHref() string
GetHref returns the Href field if non-nil, zero value otherwise.
GetHrefOk
func (o *KubernetesNodes) GetHrefOk() (*string, bool)
GetHrefOk returns a tuple with the Href field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetHref
func (o *KubernetesNodes) SetHref(v string)
SetHref sets Href field to given value.
HasHref
func (o *KubernetesNodes) HasHref() bool
HasHref returns a boolean if a field has been set.
GetItems
func (o *KubernetesNodes) GetItems() []KubernetesNode
GetItems returns the Items field if non-nil, zero value otherwise.
GetItemsOk
func (o *KubernetesNodes) GetItemsOk() (*[]KubernetesNode, bool)
GetItemsOk returns a tuple with the Items field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetItems
func (o *KubernetesNodes) SetItems(v []KubernetesNode)
SetItems sets Items field to given value.
HasItems
func (o *KubernetesNodes) HasItems() bool
HasItems returns a boolean if a field has been set.
Last updated