@@ -93,19 +93,19 @@ These models are describing objects that are getting returned from the superviso
93
93
94
94
## Network interface
95
95
96
- | key | type | description |
97
- | ----------- | ------- | ---------------------------------------------------------------------------- |
98
- | interface | string | The interface name i.e eth0. |
99
- | type | string | The interface type: ` ethernet ` , ` wireless ` or ` vlan ` . |
100
- | enabled | boolean | Return True if the interface is enabled. |
101
- | connected | boolean | Return True if the interface is connected to the network. |
102
- | primary | boolean | ` true ` if it's the primary network interface. |
103
- | ipv4 | struct or null | An IP config struct with IPv4 connection details. |
104
- | ipv6 | struct or null | An IP config struct with IPv6 connection details. |
105
- | wifi | struct or null | A Wifi config struct with wireless connection details. |
106
- | vlan | struct or null | A Vlan config struct with details about the vlan. |
107
-
108
- ### IP configuration
96
+ | key | type | description |
97
+ | ----------- | ------- | --------------------------------------------------------------------------------------------- |
98
+ | interface | string | The interface name i.e eth0. |
99
+ | type | string | The interface type: ` ethernet ` , ` wireless ` or ` vlan ` . |
100
+ | enabled | boolean | Return True if the interface is enabled. |
101
+ | connected | boolean | Return True if the interface is connected to the network. |
102
+ | primary | boolean | ` true ` if it's the primary network interface. |
103
+ | ipv4 | struct or null | An [ IPv4 configuration ] ( #ipv4-configuration ) struct with IPv4 connection details. |
104
+ | ipv6 | struct or null | An [ IPv6 configuration ] ( #ipv6-configuration ) struct with IPv6 connection details. |
105
+ | wifi | struct or null | A [ Wifi configuration ] ( #wifi-configuration ) struct with wireless connection details. |
106
+ | vlan | struct or null | A [ VLAN configuration ] ( #vlan-configuration ) struct with details about the vlan. |
107
+
108
+ ### IPv4 configuration
109
109
110
110
| key | type | description |
111
111
| ----------- | ------- | ---------------------------------------------------------------------------- |
@@ -114,6 +114,17 @@ These models are describing objects that are getting returned from the superviso
114
114
| gateway | string | The IP address of the gateway. |
115
115
| nameservers | list | A list containing the IP addresses of the configured nameservers as strings. |
116
116
117
+ ### IPv6 configuration
118
+
119
+ | key | type | description |
120
+ | ------------- | ------- | ------------------------------------------------------------------------------------------- |
121
+ | method | string | The method used to set the IP can be ` static ` , ` auto ` or ` disabled ` . |
122
+ | addr_gen_mode | string | Address generation mode can be ` eui64 ` or ` stable-privacy ` , ` default-or-eui64 ` or ` default ` |
123
+ | ip6_privacy | string | Privacy extensions options are ` disabled ` , ` enabled-prefer-public ` , ` enabled ` or ` default ` |
124
+ | address | list | A list with IP address and the netmask in a ::/XX format. |
125
+ | gateway | string | The IP address of the gateway. |
126
+ | nameservers | list | A list containing the IP addresses of the configured nameservers as strings. |
127
+
117
128
### Wifi configuration
118
129
119
130
| key | type | description |
@@ -169,15 +180,15 @@ These models are describing objects that are getting returned from the superviso
169
180
170
181
## Backup
171
182
172
- | key | type | description |
173
- | --------- | ------- | --------------------------------------------------------------------- |
174
- | slug | string | A generated slug for the backup |
175
- | date | string | ISO date string representation of the date the backup was created |
176
- | name | string | The name given to the backup |
177
- | type | string | The type of backup (full, partial) |
178
- | protected | boolean | ` true ` if the backup is password protected |
179
- | content | dictionary | A dictionary describing the content of the backup |
180
- | compressed | boolean | ` true ` if the backup is saved in a compressed archive |
183
+ | key | type | description |
184
+ | --------- | ------- | -------------------------------------------------------------------------- |
185
+ | slug | string | A generated slug for the backup |
186
+ | date | string | ISO date string representation of the date the backup was created |
187
+ | name | string | The name given to the backup |
188
+ | type | string | The type of backup (full, partial) |
189
+ | protected | boolean | ` true ` if the backup is password protected |
190
+ | content | dictionary | Details of the backup content. See [ Backup -> content ] ( #backup---content ) |
191
+ | compressed | boolean | ` true ` if the backup is saved in a compressed archive |
181
192
182
193
### Backup -> content
183
194
0 commit comments