factory PersistentDiskSpec.fromJson(Map<String, dynamic> json) { return PersistentDiskSpec( diskType: json['diskType'] ?? '', diskSizeGb: decodeInt64(json['diskSizeGb']) ?? 0, ); }