Skip to content

Commit

Permalink
feat(apple-silicon): add VNC port suppport (#1542)
Browse files Browse the repository at this point in the history
Co-authored-by: Laure-di <62625835+Laure-di@users.noreply.github.com>
  • Loading branch information
scaleway-bot and Laure-di authored Nov 4, 2024
1 parent 5a1a365 commit db52033
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ export const unmarshalServer = (data: unknown): Server => {
sudoPassword: data.sudo_password,
type: data.type,
updatedAt: unmarshalDate(data.updated_at),
vncPort: data.vnc_port,
vncUrl: data.vnc_url,
zone: data.zone,
} as Server
Expand Down
2 changes: 2 additions & 0 deletions packages/clients/src/api/applesilicon/v1alpha1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ export interface Server {
sshUsername: string
/** Admin password required to execute commands. */
sudoPassword: string
/** VNC port to use for remote desktop connection. */
vncPort: number
/**
* Initially installed OS, this does not necessarily reflect the current OS
* version.
Expand Down

0 comments on commit db52033

Please sign in to comment.