garage-admin-sdk-golang/docs/NodeClusterInfo.md

2.9 KiB

NodeClusterInfo

Properties

Name Type Description Notes
Zone string
Capacity Pointer to NullableInt64 [optional]
Tags []string User defined tags, put whatever makes sense for you, these tags are not interpreted by Garage

Methods

NewNodeClusterInfo

func NewNodeClusterInfo(zone string, tags []string, ) *NodeClusterInfo

NewNodeClusterInfo instantiates a new NodeClusterInfo 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

NewNodeClusterInfoWithDefaults

func NewNodeClusterInfoWithDefaults() *NodeClusterInfo

NewNodeClusterInfoWithDefaults instantiates a new NodeClusterInfo 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

GetZone

func (o *NodeClusterInfo) GetZone() string

GetZone returns the Zone field if non-nil, zero value otherwise.

GetZoneOk

func (o *NodeClusterInfo) GetZoneOk() (*string, bool)

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

SetZone

func (o *NodeClusterInfo) SetZone(v string)

SetZone sets Zone field to given value.

GetCapacity

func (o *NodeClusterInfo) GetCapacity() int64

GetCapacity returns the Capacity field if non-nil, zero value otherwise.

GetCapacityOk

func (o *NodeClusterInfo) GetCapacityOk() (*int64, bool)

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

SetCapacity

func (o *NodeClusterInfo) SetCapacity(v int64)

SetCapacity sets Capacity field to given value.

HasCapacity

func (o *NodeClusterInfo) HasCapacity() bool

HasCapacity returns a boolean if a field has been set.

SetCapacityNil

func (o *NodeClusterInfo) SetCapacityNil(b bool)

SetCapacityNil sets the value for Capacity to be an explicit nil

UnsetCapacity

func (o *NodeClusterInfo) UnsetCapacity()

UnsetCapacity ensures that no value is present for Capacity, not even an explicit nil

GetTags

func (o *NodeClusterInfo) GetTags() []string

GetTags returns the Tags field if non-nil, zero value otherwise.

GetTagsOk

func (o *NodeClusterInfo) GetTagsOk() (*[]string, bool)

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

SetTags

func (o *NodeClusterInfo) SetTags(v []string)

SetTags sets Tags field to given value.

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