We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a15029 commit 46619fbCopy full SHA for 46619fb
packages/clients/src/api/block/v1alpha1/marshalling.gen.ts
@@ -68,6 +68,7 @@ export const unmarshalVolume = (data: unknown): Volume => {
68
return {
69
createdAt: unmarshalDate(data.created_at),
70
id: data.id,
71
+ lastDetachedAt: unmarshalDate(data.last_detached_at),
72
name: data.name,
73
parentSnapshotId: data.parent_snapshot_id,
74
projectId: data.project_id,
packages/clients/src/api/block/v1alpha1/types.gen.ts
@@ -174,6 +174,8 @@ export interface Volume {
174
zone: Zone
175
/** Specifications of the volume. */
176
specs?: VolumeSpecifications
177
+ /** Last time the volume was detached. */
178
+ lastDetachedAt?: Date
179
}
180
181
export type CreateSnapshotRequest = {
0 commit comments