Create workspace :param workspace: the desired workspace. :return: status
(self, workspace, *args, **kwargs)
| 434 | return self.cmd("workspace", "select", workspace, *args, **kwargs) |
| 435 | |
| 436 | def create_workspace(self, workspace, *args, **kwargs) -> CommandOutput: |
| 437 | """Create workspace |
| 438 | |
| 439 | :param workspace: the desired workspace. |
| 440 | :return: status |
| 441 | """ |
| 442 | return self.cmd("workspace", "new", workspace, *args, **kwargs) |
| 443 | |
| 444 | def delete_workspace(self, workspace, *args, **kwargs) -> CommandOutput: |
| 445 | """Delete workspace |