(filter *ari.Key)
| 22 | } |
| 23 | |
| 24 | func (ds *deviceState) List(filter *ari.Key) ([]*ari.Key, error) { |
| 25 | return ds.c.listRequest(&proxy.Request{ |
| 26 | Kind: "DeviceStateList", |
| 27 | Key: filter, |
| 28 | }) |
| 29 | } |
| 30 | |
| 31 | func (ds *deviceState) Data(key *ari.Key) (*ari.DeviceStateData, error) { |
| 32 | data, err := ds.c.dataRequest(&proxy.Request{ |
nothing calls this directly
no test coverage detected