Build id of software running on the server. If metadata has not been pulled, it will be pulled upon calling this. :return: Server build id string :raises RuntimeError: If there was an error
(self)
| 149 | |
| 150 | @property |
| 151 | def server_build_id(self) -> str: |
| 152 | """ |
| 153 | Build id of software running on the server. If metadata has not been pulled, it will |
| 154 | be pulled upon calling this. |
| 155 | |
| 156 | :return: Server build id string |
| 157 | :raises RuntimeError: If there was an error |
| 158 | """ |
| 159 | if not self.has_loaded_metadata: |
| 160 | self.load_metadata() |
| 161 | return core.BNRemoteGetServerBuildId(self._handle) |
| 162 | |
| 163 | @property |
| 164 | def auth_backends(self) -> List[Tuple[str, str]]: |
nothing calls this directly
no test coverage detected