(key *ari.Key, tuples []ari.ConfigTuple)
| 25 | } |
| 26 | |
| 27 | func (c *config) Update(key *ari.Key, tuples []ari.ConfigTuple) error { |
| 28 | return c.c.commandRequest(&proxy.Request{ |
| 29 | Kind: "AsteriskConfigUpdate", |
| 30 | Key: key, |
| 31 | AsteriskConfig: &proxy.AsteriskConfig{ |
| 32 | Tuples: tuples, |
| 33 | }, |
| 34 | }) |
| 35 | } |
| 36 | |
| 37 | func (c *config) Delete(key *ari.Key) error { |
| 38 | return c.c.commandRequest(&proxy.Request{ |