(filter *ari.Key)
| 56 | } |
| 57 | |
| 58 | func (b *bridge) List(filter *ari.Key) ([]*ari.Key, error) { |
| 59 | return b.c.listRequest(&proxy.Request{ |
| 60 | Kind: "BridgeList", |
| 61 | Key: filter, |
| 62 | }) |
| 63 | } |
| 64 | |
| 65 | func (b *bridge) Data(key *ari.Key) (*ari.BridgeData, error) { |
| 66 | resp, err := b.c.dataRequest(&proxy.Request{ |
nothing calls this directly
no test coverage detected