Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ export const unmarshalServer = (data: unknown): Server => {
createdAt: unmarshalDate(data.created_at),
deletableAt: unmarshalDate(data.deletable_at),
deletionScheduled: data.deletion_scheduled,
delivered: data.delivered,
id: data.id,
ip: data.ip,
name: data.name,
Expand Down
8 changes: 8 additions & 0 deletions packages/clients/src/api/applesilicon/v1alpha1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,14 @@ export interface Server {
deletionScheduled: boolean
/** Zone of the server. */
zone: Zone
/**
* Set to true once the server has completed its provisioning steps and is
* ready to use. Some OS configurations might require a reinstallation of the
* server before delivery depending on the available stock. A reinstallation
* after the initial delivery will not change this flag and can be tracked
* using the server status.
*/
delivered: boolean
}

export type CreateServerRequest = {
Expand Down