File tree Expand file tree Collapse file tree 4 files changed +38
-2
lines changed
scaleway-async/scaleway_async/applesilicon/v1alpha1
scaleway/scaleway/applesilicon/v1alpha1 Expand file tree Collapse file tree 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:
258258 if field is not None :
259259 args ["vnc_url" ] = field
260260
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+
261269 field = data .get ("status" , None )
262270 if field is not None :
263271 args ["status" ] = field
Original file line number Diff line number Diff line change @@ -212,7 +212,17 @@ class Server:
212212
213213 vnc_url : str
214214 """
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.
216226 """
217227
218228 status : ServerStatus
Original file line number Diff line number Diff line change @@ -258,6 +258,14 @@ def unmarshal_Server(data: Any) -> Server:
258258 if field is not None :
259259 args ["vnc_url" ] = field
260260
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+
261269 field = data .get ("status" , None )
262270 if field is not None :
263271 args ["status" ] = field
Original file line number Diff line number Diff line change @@ -212,7 +212,17 @@ class Server:
212212
213213 vnc_url : str
214214 """
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.
216226 """
217227
218228 status : ServerStatus
You can’t perform that action at this time.
0 commit comments