(appGUID string, featureName string)
| 11 | } |
| 12 | |
| 13 | func (client *Client) GetAppFeature(appGUID string, featureName string) (resources.ApplicationFeature, Warnings, error) { |
| 14 | var responseBody resources.ApplicationFeature |
| 15 | |
| 16 | _, warnings, err := client.MakeRequest(RequestParams{ |
| 17 | RequestName: internal.GetApplicationFeaturesRequest, |
| 18 | URIParams: internal.Params{"app_guid": appGUID, "name": featureName}, |
| 19 | ResponseBody: &responseBody, |
| 20 | }) |
| 21 | |
| 22 | return responseBody, warnings, err |
| 23 | } |
| 24 | |
| 25 | func (client *Client) GetSSHEnabled(appGUID string) (SSHEnabled, Warnings, error) { |
| 26 | var responseBody SSHEnabled |
nothing calls this directly
no test coverage detected