(cluster_name, name, data)
| 15 | return post(`${apiServerUrl(cluster_name)}`, data) |
| 16 | } |
| 17 | export function updateApiServer (cluster_name, name, data) { |
| 18 | return patch(`${apiServerUrl(cluster_name)}/${name}`, data) |
| 19 | } |
| 20 | export function getApiService (cluster_name, name) { |
| 21 | return get(`${apiServerUrl(cluster_name)}/${name}`) |
| 22 | } |
nothing calls this directly
no test coverage detected