ClusterResponseData
Properties
Name | Type | Description | Notes |
---|---|---|---|
Id | string | The unique ID of the resource. Must conform to the UUID format. | |
Type | Pointer to string | The type of the resource. | [optional] |
Href | Pointer to string | URL to the object representation (absolute path). | [optional] |
Metadata | |||
Properties |
Methods
NewClusterResponseData
func NewClusterResponseData(id string, metadata Metadata, properties Cluster, ) *ClusterResponseData
NewClusterResponseData instantiates a new ClusterResponseData 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
NewClusterResponseDataWithDefaults
func NewClusterResponseDataWithDefaults() *ClusterResponseData
NewClusterResponseDataWithDefaults instantiates a new ClusterResponseData 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 *ClusterResponseData) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
GetIdOk
func (o *ClusterResponseData) 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 *ClusterResponseData) SetId(v string)
SetId sets Id field to given value.
GetType
func (o *ClusterResponseData) GetType() string
GetType returns the Type field if non-nil, zero value otherwise.
GetTypeOk
func (o *ClusterResponseData) 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 *ClusterResponseData) SetType(v string)
SetType sets Type field to given value.
HasType
func (o *ClusterResponseData) HasType() bool
HasType returns a boolean if a field has been set.
GetHref
func (o *ClusterResponseData) GetHref() string
GetHref returns the Href field if non-nil, zero value otherwise.
GetHrefOk
func (o *ClusterResponseData) 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 *ClusterResponseData) SetHref(v string)
SetHref sets Href field to given value.
HasHref
func (o *ClusterResponseData) HasHref() bool
HasHref returns a boolean if a field has been set.
GetMetadata
func (o *ClusterResponseData) GetMetadata() Metadata
GetMetadata returns the Metadata field if non-nil, zero value otherwise.
GetMetadataOk
func (o *ClusterResponseData) GetMetadataOk() (*Metadata, bool)
GetMetadataOk returns a tuple with the Metadata field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetMetadata
func (o *ClusterResponseData) SetMetadata(v Metadata)
SetMetadata sets Metadata field to given value.
GetProperties
func (o *ClusterResponseData) GetProperties() Cluster
GetProperties returns the Properties field if non-nil, zero value otherwise.
GetPropertiesOk
func (o *ClusterResponseData) GetPropertiesOk() (*Cluster, bool)
GetPropertiesOk returns a tuple with the Properties field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetProperties
func (o *ClusterResponseData) SetProperties(v Cluster)
SetProperties sets Properties field to given value.
Last updated