(instanceName: string)
| 323 | |
| 324 | // Instances |
| 325 | async getInstance(instanceName: string) { |
| 326 | return this.request<{ name: string; dataSources: { id: string; port: string; host: string }[] }>("GET", `/v1/${instanceName}`); |
| 327 | } |
| 328 | |
| 329 | async updateInstanceDataSource(instanceName: string, dataSourceId: string, port: string) { |
| 330 | return this.request<unknown>("PATCH", |
no test coverage detected