github.com/ablease/cli@v6.37.1-0.20180613014814-3adbb7d7fb19+incompatible/actor/v2action/service_plan.go (about) 1 package v2action 2 3 import "code.cloudfoundry.org/cli/api/cloudcontroller/ccv2" 4 5 type ServicePlan ccv2.ServicePlan 6 7 func (actor Actor) GetServicePlan(servicePlanGUID string) (ServicePlan, Warnings, error) { 8 servicePlan, warnings, err := actor.CloudControllerClient.GetServicePlan(servicePlanGUID) 9 return ServicePlan(servicePlan), Warnings(warnings), err 10 }