File tree 4 files changed +38
-2
lines changed
scaleway/scaleway/applesilicon/v1alpha1
scaleway-async/scaleway_async/applesilicon/v1alpha1
4 files changed +38
-2
lines changed Original file line number Diff line number Diff line change @@ -258,6 +258,14 @@ def unmarshal_Server(data: Any) -> Server:
258
258
if field is not None :
259
259
args ["vnc_url" ] = field
260
260
261
+ field = data .get ("ssh_username" , None )
262
+ if field is not None :
263
+ args ["ssh_username" ] = field
264
+
265
+ field = data .get ("sudo_password" , None )
266
+ if field is not None :
267
+ args ["sudo_password" ] = field
268
+
261
269
field = data .get ("status" , None )
262
270
if field is not None :
263
271
args ["status" ] = field
Original file line number Diff line number Diff line change @@ -212,7 +212,17 @@ class Server:
212
212
213
213
vnc_url : str
214
214
"""
215
- URL of the VNC.
215
+ Vnc:// URL to access Apple Remote Desktop.
216
+ """
217
+
218
+ ssh_username : str
219
+ """
220
+ SSH Username for remote shell.
221
+ """
222
+
223
+ sudo_password : str
224
+ """
225
+ Admin password required to execute commands.
216
226
"""
217
227
218
228
status : ServerStatus
Original file line number Diff line number Diff line change @@ -258,6 +258,14 @@ def unmarshal_Server(data: Any) -> Server:
258
258
if field is not None :
259
259
args ["vnc_url" ] = field
260
260
261
+ field = data .get ("ssh_username" , None )
262
+ if field is not None :
263
+ args ["ssh_username" ] = field
264
+
265
+ field = data .get ("sudo_password" , None )
266
+ if field is not None :
267
+ args ["sudo_password" ] = field
268
+
261
269
field = data .get ("status" , None )
262
270
if field is not None :
263
271
args ["status" ] = field
Original file line number Diff line number Diff line change @@ -212,7 +212,17 @@ class Server:
212
212
213
213
vnc_url : str
214
214
"""
215
- URL of the VNC.
215
+ Vnc:// URL to access Apple Remote Desktop.
216
+ """
217
+
218
+ ssh_username : str
219
+ """
220
+ SSH Username for remote shell.
221
+ """
222
+
223
+ sudo_password : str
224
+ """
225
+ Admin password required to execute commands.
216
226
"""
217
227
218
228
status : ServerStatus
You can’t perform that action at this time.
0 commit comments