(self, pool: str, app: str)
| 1211 | @API.perm('w') |
| 1212 | @API.expose |
| 1213 | def appify_pool(self, pool: str, app: str) -> None: |
| 1214 | c = { |
| 1215 | 'prefix': 'osd pool application enable', |
| 1216 | 'format': 'json', |
| 1217 | 'pool': pool, |
| 1218 | 'app': app, |
| 1219 | 'yes_i_really_mean_it': True |
| 1220 | } |
| 1221 | self.check_mon_command(c) |
| 1222 | |
| 1223 | @API.perm('w') |
| 1224 | @API.expose |
no test coverage detected