github.com/willmadison/cli@v6.40.1-0.20181018160101-29d5937903ff+incompatible/actor/v2action/service.go (about) 1 package v2action 2 3 import "code.cloudfoundry.org/cli/api/cloudcontroller/ccv2" 4 5 type Service ccv2.Service 6 7 func (actor Actor) GetService(serviceGUID string) (Service, Warnings, error) { 8 service, warnings, err := actor.CloudControllerClient.GetService(serviceGUID) 9 return Service(service), Warnings(warnings), err 10 }