(self)
| 260 | return self._api_path_prefix |
| 261 | |
| 262 | def _error_on_unexpected_version(self): |
| 263 | if self.VERSION != CURRENT_VERSION: |
| 264 | raise ValueError('Backwards compatibility of this ' |
| 265 | 'operator is not implemented') |
| 266 | |
| 267 | def basebackups(self): |
| 268 | return self._api_path_prefix + 'basebackups_' + self.VERSION + '/' |
no outgoing calls
no test coverage detected