docs/models/KubernetesNodePools.md in ionoscloud-6.1.1 vs docs/models/KubernetesNodePools.md in ionoscloud-6.1.2
- old
+ new
@@ -2,23 +2,31 @@
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
+
+| **href** | **String** | The URL to the collection representation (absolute path). | [optional][readonly] |
+
| **id** | **String** | A unique representation of the Kubernetes node pool as a resource collection. | [optional][readonly] |
-| **type** | **String** | The type of resource within a collection. | [optional][readonly] |
-| **href** | **String** | URL to the collection representation (absolute path). | [optional][readonly] |
+
| **items** | [**Array<KubernetesNodePool>**](KubernetesNodePool.md) | Array of items in the collection. | [optional][readonly] |
+| **type** | **String** | The resource type within a collection. | [optional][readonly] |
+
## Example
```ruby
require 'ionoscloud'
+
instance = Ionoscloud::KubernetesNodePools.new(
+ href: https://api.ionos.com/cloudapi/v6/k8s/30f8a4f6-6515-4c34-b49d-dea807453b90/nodepools,
+
id: 1e072e52-2ed3-492f-b6b6-c6b116907527/nodepools,
- type: collection,
- href: <RESOURCE-URI>,
- items: null
+
+ items: null,
+
+ type: collection
)
```