(endpoint, apiURL string)
| 131 | } |
| 132 | |
| 133 | func (gateway Gateway) DeleteResource(endpoint, apiURL string) error { |
| 134 | return gateway.createUpdateOrDeleteResource("DELETE", endpoint, apiURL, nil, false, &AsyncResource{}) |
| 135 | } |
| 136 | |
| 137 | func (gateway Gateway) ListPaginatedResources( |
| 138 | target string, |
no test coverage detected