(filter *ari.Key)
| 10 | } |
| 11 | |
| 12 | func (a *application) List(filter *ari.Key) ([]*ari.Key, error) { |
| 13 | return a.c.listRequest(&proxy.Request{ |
| 14 | Kind: "ApplicationList", |
| 15 | Key: filter, |
| 16 | }) |
| 17 | } |
| 18 | |
| 19 | func (a *application) Data(key *ari.Key) (*ari.ApplicationData, error) { |
| 20 | ret, err := a.c.dataRequest(&proxy.Request{ |
nothing calls this directly
no test coverage detected