TypeScript
const options = {method: 'GET'}; fetch('http://localhost:4065/v1/kubernetes/management', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "success": true, "data": {}, "meta": { "requestId": "<string>", "timestamp": "<string>" } }
Returns the singleton management object (first item from list). Returns null in data if none exists.
Management object
true
Raw Kubernetes resource object
Show child attributes
Was this page helpful?