GetServicePlans lists service plan with optional filters.
(query ...Query)
| 26 | |
| 27 | // GetServicePlans lists service plan with optional filters. |
| 28 | func (client *Client) GetServicePlans(query ...Query) ([]resources.ServicePlan, Warnings, error) { |
| 29 | plans, _, warnings, err := client.getServicePlans(query...) |
| 30 | return plans, warnings, err |
| 31 | } |
| 32 | |
| 33 | func (client *Client) getServicePlans(query ...Query) ([]resources.ServicePlan, IncludedResources, Warnings, error) { |
| 34 | var plans []resources.ServicePlan |
nothing calls this directly
no test coverage detected