File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -153,6 +153,7 @@ export const unmarshalServer = (data: unknown): Server => {
153153 sudoPassword : data . sudo_password ,
154154 type : data . type ,
155155 updatedAt : unmarshalDate ( data . updated_at ) ,
156+ vncPort : data . vnc_port ,
156157 vncUrl : data . vnc_url ,
157158 zone : data . zone ,
158159 } as Server
Original file line number Diff line number Diff line change @@ -107,6 +107,8 @@ export interface Server {
107107 sshUsername : string
108108 /** Admin password required to execute commands. */
109109 sudoPassword : string
110+ /** VNC port to use for remote desktop connection. */
111+ vncPort : number
110112 /**
111113 * Initially installed OS, this does not necessarily reflect the current OS
112114 * version.
Original file line number Diff line number Diff line change @@ -311,7 +311,7 @@ export type CreateUserRequest = {
311311 /** Name of the database user. */
312312 name : string
313313 /** Password of the database user. */
314- password ? : string
314+ password : string
315315}
316316
317317export type DeleteInstanceRequest = {
You can’t perform that action at this time.
0 commit comments