(account: string, container: string)
| 27 | } |
| 28 | |
| 29 | async getDataSourceMetaPaths(account: string, container: string): Promise<string[]> { |
| 30 | const response = await this.authUtil.requestWithAuthIfRequired({ |
| 31 | method: 'get', |
| 32 | url: `/api/datasources/${account}/${container}/meta/paths` |
| 33 | }); |
| 34 | return response.data; |
| 35 | } |
| 36 | |
| 37 | async updateMeta(account: string, container: string, filePath: string, meta: SigMFMetadata): Promise<SigMFMetadata> { |
| 38 | try { |
nothing calls this directly
no test coverage detected