(self)
| 172 | return ['cert_path', 'key_path', 'trust_store_path'] |
| 173 | |
| 174 | def as_dict(self): |
| 175 | d = { |
| 176 | 'cert_path': self._cert_path, |
| 177 | 'key_path': self._key_path |
| 178 | } |
| 179 | if self._trust_store_path is not None: |
| 180 | d['trust_store_path'] = self._trust_store_path |
| 181 | |
| 182 | return d |
| 183 | |
| 184 | |
| 185 | class AuthDomain(IntEnum): |