(cluster_name, namespace,name, data)
| 37 | } |
| 38 | |
| 39 | export function updateResourceQuota (cluster_name, namespace,name, data) { |
| 40 | return put(`${namespaceResourceQuotaUrl(cluster_name, namespace)}/${name}`, data) |
| 41 | } |
| 42 | |
| 43 | export function listResourceQuotaByNamespace(cluster_name,namespace) { |
| 44 | return get(`${namespaceResourceQuotaUrl(cluster_name, namespace)}`) |
nothing calls this directly
no test coverage detected