Registries
Remove Registry
Removes registry from the workspace
const { setToken, Workspaces } = require('@evecloud/sdk');
setToken('TOKEN');
Workspaces.registries.remove('WORKSPACE_ID', 'REGISTRY_ID').then(data => {
console.log(data);
}).catch((error) => {
console.log(error);
});
Was this page helpful?
const { setToken, Workspaces } = require('@evecloud/sdk');
setToken('TOKEN');
Workspaces.registries.remove('WORKSPACE_ID', 'REGISTRY_ID').then(data => {
console.log(data);
}).catch((error) => {
console.log(error);
});