docs/models/KubernetesNodeMetadata.md in ionoscloud-6.1.1 vs docs/models/KubernetesNodeMetadata.md in ionoscloud-6.1.2

- old
+ new

@@ -2,25 +2,35 @@ ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | -| **etag** | **String** | Resource's Entity Tag as defined in http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.11 Entity Tag is also added as an 'ETag response header to requests which don't use 'depth' parameter. | [optional][readonly] | -| **created_date** | **Time** | The last time the resource was created. | [optional][readonly] | -| **last_modified_date** | **Time** | The last time the resource was modified. | [optional][readonly] | -| **state** | **String** | State of the resource. | [optional][readonly] | -| **last_software_updated_date** | **Time** | The last time the software was updated on the node. | [optional][readonly] | +| **created_date** | **Time** | The date the resource was created. | [optional][readonly] | + +| **etag** | **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] | + +| **last_modified_date** | **Time** | The date the resource was last modified. | [optional][readonly] | + +| **last_software_updated_date** | **Time** | The date when the software on the node was last updated. | [optional][readonly] | + +| **state** | **String** | The resource state. | [optional][readonly] | + ## Example ```ruby require 'ionoscloud' + instance = Ionoscloud::KubernetesNodeMetadata.new( - etag: 45480eb3fbfc31f1d916c1eaa4abdcc3, created_date: 2015-12-04T14:34:09.809Z, + + etag: 45480eb3fbfc31f1d916c1eaa4abdcc3, + last_modified_date: 2015-12-04T14:34:09.809Z, - state: AVAILABLE, - last_software_updated_date: 2015-12-04T14:34:09.809Z + + last_software_updated_date: 2015-12-04T14:34:09.809Z, + + state: AVAILABLE ) ```