File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
packages/clients/src/api/applesilicon/v1alpha1 Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ export const unmarshalServer = (data: unknown): Server => {
141141 createdAt : unmarshalDate ( data . created_at ) ,
142142 deletableAt : unmarshalDate ( data . deletable_at ) ,
143143 deletionScheduled : data . deletion_scheduled ,
144+ delivered : data . delivered ,
144145 id : data . id ,
145146 ip : data . ip ,
146147 name : data . name ,
Original file line number Diff line number Diff line change @@ -128,6 +128,14 @@ export interface Server {
128128 deletionScheduled : boolean
129129 /** Zone of the server. */
130130 zone : Zone
131+ /**
132+ * Set to true once the server has completed its provisioning steps and is
133+ * ready to use. Some OS configurations might require a reinstallation of the
134+ * server before delivery depending on the available stock. A reinstallation
135+ * after the initial delivery will not change this flag and can be tracked
136+ * using the server status.
137+ */
138+ delivered : boolean
131139}
132140
133141export type CreateServerRequest = {
You can’t perform that action at this time.
0 commit comments