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

- old
+ new

@@ -2,27 +2,39 @@ ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | -| **id** | **String** | The resource&#39;s unique identifier. | [optional][readonly] | -| **type** | [**Type**](Type.md) | The type of object that has been created. | [optional] | + +| **entities** | [**LanEntities**](LanEntities.md) | | [optional] | + | **href** | **String** | URL to the object representation (absolute path). | [optional][readonly] | + +| **id** | **String** | The resource&#39;s unique identifier. | [optional][readonly] | + | **metadata** | [**DatacenterElementMetadata**](DatacenterElementMetadata.md) | | [optional] | -| **entities** | [**LanEntities**](LanEntities.md) | | [optional] | + | **properties** | [**LanPropertiesPost**](LanPropertiesPost.md) | | | +| **type** | [**Type**](Type.md) | The type of object that has been created. | [optional] | + ## Example ```ruby require 'ionoscloud' + instance = Ionoscloud::LanPost.new( - id: 5, - type: "lan", + entities: null, + href: <RESOURCE-URI>, + + id: 5, + metadata: null, - entities: null, - properties: null + + properties: null, + + type: "lan" ) ```