docs/models/LanProperties.md in ionoscloud-6.1.1 vs docs/models/LanProperties.md in ionoscloud-6.1.2
- old
+ new
@@ -2,23 +2,31 @@
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
-| **name** | **String** | The name of the resource. | [optional] |
+
| **ip_failover** | [**Array<IPFailover>**](IPFailover.md) | IP failover configurations for lan | [optional] |
+
+| **name** | **String** | The name of the resource. | [optional] |
+
| **pcc** | **String** | The unique identifier of the private Cross-Connect the LAN is connected to, if any. | [optional] |
+
| **public** | **Boolean** | This LAN faces the public Internet. | [optional] |
## Example
```ruby
require 'ionoscloud'
+
instance = Ionoscloud::LanProperties.new(
- name: My resource,
ip_failover: null,
+
+ name: My resource,
+
pcc: 3c11273c-b3e1-4ca3-8134-84fd2dd4ebec,
+
public: true
)
```