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
1 change: 1 addition & 0 deletions packages/clients/src/api/instance/v1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,7 @@ const unmarshalServer = (data: unknown): Server => {
creationDate: unmarshalDate(data.creation_date),
dynamicIpRequired: data.dynamic_ip_required,
enableIpv6: data.enable_ipv6,
endOfService: data.end_of_service,
hostname: data.hostname,
id: data.id,
image: data.image ? unmarshalImage(data.image) : undefined,
Expand Down
4 changes: 4 additions & 0 deletions packages/clients/src/api/instance/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -632,6 +632,10 @@ export interface Server {
* This value is reset when admin_password_encryption_ssh_key_id is set to an empty string.
*/
adminPasswordEncryptedValue?: string
/**
* True if the Instance type has reached end of service.
*/
endOfService: boolean
}

export interface VolumeTemplate {
Expand Down
Loading