Set localized configuration for this ceph-mgr instance. :param str key: :param str val: :return: str
(self, key: str, val: Optional[str])
| 2213 | @API.perm('w') |
| 2214 | @API.expose |
| 2215 | def set_localized_module_option(self, key: str, val: Optional[str]) -> None: |
| 2216 | """ |
| 2217 | Set localized configuration for this ceph-mgr instance. |
| 2218 | |
| 2219 | :param str key: |
| 2220 | :param str val: |
| 2221 | :return: str |
| 2222 | """ |
| 2223 | self._validate_module_option(key) |
| 2224 | return self._set_localized(key, val, self._set_module_option) |
| 2225 | |
| 2226 | @API.perm('w') |
| 2227 | @API.expose |
no test coverage detected