github.com/ablease/cli@v6.37.1-0.20180613014814-3adbb7d7fb19+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 }