Skip to content

Latest commit

 

History

History
161 lines (86 loc) · 3.93 KB

ClusterGroup.md

File metadata and controls

161 lines (86 loc) · 3.93 KB

ClusterGroup

Properties

Name Type Description Notes
Id string [readonly]
Url string [readonly]
Name string
Slug Pointer to string [optional]
ClusterCount int32 [readonly]
Display string Human friendly display value [readonly]

Methods

NewClusterGroup

func NewClusterGroup(id string, url string, name string, clusterCount int32, display string, ) *ClusterGroup

NewClusterGroup instantiates a new ClusterGroup 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

NewClusterGroupWithDefaults

func NewClusterGroupWithDefaults() *ClusterGroup

NewClusterGroupWithDefaults instantiates a new ClusterGroup 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 *ClusterGroup) GetId() string

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

GetIdOk

func (o *ClusterGroup) 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 *ClusterGroup) SetId(v string)

SetId sets Id field to given value.

GetUrl

func (o *ClusterGroup) GetUrl() string

GetUrl returns the Url field if non-nil, zero value otherwise.

GetUrlOk

func (o *ClusterGroup) GetUrlOk() (*string, bool)

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

SetUrl

func (o *ClusterGroup) SetUrl(v string)

SetUrl sets Url field to given value.

GetName

func (o *ClusterGroup) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetSlug

func (o *ClusterGroup) GetSlug() string

GetSlug returns the Slug field if non-nil, zero value otherwise.

GetSlugOk

func (o *ClusterGroup) GetSlugOk() (*string, bool)

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

SetSlug

func (o *ClusterGroup) SetSlug(v string)

SetSlug sets Slug field to given value.

HasSlug

func (o *ClusterGroup) HasSlug() bool

HasSlug returns a boolean if a field has been set.

GetClusterCount

func (o *ClusterGroup) GetClusterCount() int32

GetClusterCount returns the ClusterCount field if non-nil, zero value otherwise.

GetClusterCountOk

func (o *ClusterGroup) GetClusterCountOk() (*int32, bool)

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

SetClusterCount

func (o *ClusterGroup) SetClusterCount(v int32)

SetClusterCount sets ClusterCount field to given value.

GetDisplay

func (o *ClusterGroup) GetDisplay() string

GetDisplay returns the Display field if non-nil, zero value otherwise.

GetDisplayOk

func (o *ClusterGroup) GetDisplayOk() (*string, bool)

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

SetDisplay

func (o *ClusterGroup) SetDisplay(v string)

SetDisplay sets Display field to given value.

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