Variable getLinodeDiskResponseSchemaConst
getLinodeDiskResponseSchema: ZodObject<
{
created: ZodReadonly<ZodISODateTime>;
disk_encryption: ZodDefault<ZodReadonly<ZodString>>;
filesystem: ZodEnum<
{
ext2: "ext2";
ext3: "ext3";
ext4: "ext4";
initrd: "initrd";
raw: "raw";
swap: "swap";
},
>;
id: ZodReadonly<ZodInt>;
label: ZodString;
size: ZodInt;
status: ZodEnum<
{ deleting: "deleting"; "not ready": "not ready"; ready: "ready" },
>;
updated: ZodReadonly<ZodISODateTime>;
},
$strip,
> = ...
Returns a single Disk object.