Skip to content

Commit 5f73f07

Browse files
committed
feat: update generated APIs
1 parent d77bf41 commit 5f73f07

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

packages/clients/src/api/applesilicon/v1alpha1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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,

packages/clients/src/api/applesilicon/v1alpha1/types.gen.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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

133141
export type CreateServerRequest = {

0 commit comments

Comments
 (0)