(processGUID string)
| 8 | ) |
| 9 | |
| 10 | func (actor Actor) GetProcess(processGUID string) (resources.Process, Warnings, error) { |
| 11 | process, warnings, err := actor.CloudControllerClient.GetProcess(processGUID) |
| 12 | |
| 13 | return resources.Process(process), Warnings(warnings), err |
| 14 | } |
| 15 | |
| 16 | // GetProcessByTypeAndApplication returns a process for the given application |
| 17 | // and type. |
no test coverage detected