github.com/willmadison/cli@v6.40.1-0.20181018160101-29d5937903ff+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 }