async show(runId: string): Promise<Run> {
    const path = `/runs/${runId}`
    return await this.get<Run>(path)
  }