Activates the suspended project
(self, apiclient)
| 4716 | return apiclient.updateProject(cmd) |
| 4717 | |
| 4718 | def activate(self, apiclient): |
| 4719 | """Activates the suspended project""" |
| 4720 | |
| 4721 | cmd = activateProject.activateProjectCmd() |
| 4722 | cmd.id = self.id |
| 4723 | return apiclient.activateProject(cmd) |
| 4724 | |
| 4725 | def suspend(self, apiclient): |
| 4726 | """Suspend the active project""" |