1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
# KubernetesNodeMetadata
## Properties
|Name | Type | Description | Notes|
|------------ | ------------- | ------------- | -------------|
|**Etag** | Pointer to **string** | The resource entity tag as defined in http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.11 Entity tags are also added as 'ETag' response headers to requests that do not use the 'depth' parameter. | [optional] [readonly] |
|**CreatedDate** | Pointer to [**time.Time**](time.Time.md) | The date the resource was created. | [optional] [readonly] |
|**LastModifiedDate** | Pointer to [**time.Time**](time.Time.md) | The date the resource was last modified. | [optional] [readonly] |
|**State** | Pointer to **string** | The resource state. | [optional] [readonly] |
|**LastSoftwareUpdatedDate** | Pointer to [**time.Time**](time.Time.md) | The date when the software on the node was last updated. | [optional] [readonly] |
## Methods
### NewKubernetesNodeMetadata
`func NewKubernetesNodeMetadata() *KubernetesNodeMetadata`
NewKubernetesNodeMetadata instantiates a new KubernetesNodeMetadata 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
### NewKubernetesNodeMetadataWithDefaults
`func NewKubernetesNodeMetadataWithDefaults() *KubernetesNodeMetadata`
NewKubernetesNodeMetadataWithDefaults instantiates a new KubernetesNodeMetadata 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
### GetEtag
`func (o *KubernetesNodeMetadata) GetEtag() string`
GetEtag returns the Etag field if non-nil, zero value otherwise.
### GetEtagOk
`func (o *KubernetesNodeMetadata) GetEtagOk() (*string, bool)`
GetEtagOk returns a tuple with the Etag field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetEtag
`func (o *KubernetesNodeMetadata) SetEtag(v string)`
SetEtag sets Etag field to given value.
### HasEtag
`func (o *KubernetesNodeMetadata) HasEtag() bool`
HasEtag returns a boolean if a field has been set.
### GetCreatedDate
`func (o *KubernetesNodeMetadata) GetCreatedDate() time.Time`
GetCreatedDate returns the CreatedDate field if non-nil, zero value otherwise.
### GetCreatedDateOk
`func (o *KubernetesNodeMetadata) GetCreatedDateOk() (*time.Time, bool)`
GetCreatedDateOk returns a tuple with the CreatedDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCreatedDate
`func (o *KubernetesNodeMetadata) SetCreatedDate(v time.Time)`
SetCreatedDate sets CreatedDate field to given value.
### HasCreatedDate
`func (o *KubernetesNodeMetadata) HasCreatedDate() bool`
HasCreatedDate returns a boolean if a field has been set.
### GetLastModifiedDate
`func (o *KubernetesNodeMetadata) GetLastModifiedDate() time.Time`
GetLastModifiedDate returns the LastModifiedDate field if non-nil, zero value otherwise.
### GetLastModifiedDateOk
`func (o *KubernetesNodeMetadata) GetLastModifiedDateOk() (*time.Time, bool)`
GetLastModifiedDateOk returns a tuple with the LastModifiedDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLastModifiedDate
`func (o *KubernetesNodeMetadata) SetLastModifiedDate(v time.Time)`
SetLastModifiedDate sets LastModifiedDate field to given value.
### HasLastModifiedDate
`func (o *KubernetesNodeMetadata) HasLastModifiedDate() bool`
HasLastModifiedDate returns a boolean if a field has been set.
### GetState
`func (o *KubernetesNodeMetadata) GetState() string`
GetState returns the State field if non-nil, zero value otherwise.
### GetStateOk
`func (o *KubernetesNodeMetadata) GetStateOk() (*string, bool)`
GetStateOk returns a tuple with the State field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetState
`func (o *KubernetesNodeMetadata) SetState(v string)`
SetState sets State field to given value.
### HasState
`func (o *KubernetesNodeMetadata) HasState() bool`
HasState returns a boolean if a field has been set.
### GetLastSoftwareUpdatedDate
`func (o *KubernetesNodeMetadata) GetLastSoftwareUpdatedDate() time.Time`
GetLastSoftwareUpdatedDate returns the LastSoftwareUpdatedDate field if non-nil, zero value otherwise.
### GetLastSoftwareUpdatedDateOk
`func (o *KubernetesNodeMetadata) GetLastSoftwareUpdatedDateOk() (*time.Time, bool)`
GetLastSoftwareUpdatedDateOk returns a tuple with the LastSoftwareUpdatedDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLastSoftwareUpdatedDate
`func (o *KubernetesNodeMetadata) SetLastSoftwareUpdatedDate(v time.Time)`
SetLastSoftwareUpdatedDate sets LastSoftwareUpdatedDate field to given value.
### HasLastSoftwareUpdatedDate
`func (o *KubernetesNodeMetadata) HasLastSoftwareUpdatedDate() bool`
HasLastSoftwareUpdatedDate returns a boolean if a field has been set.
|