Documents a client and its methods :param section: The section to write to.
(self, section)
| 48 | self._service_name = self._client.meta.service_model.service_name |
| 49 | |
| 50 | def document_client(self, section): |
| 51 | """Documents a client and its methods |
| 52 | |
| 53 | :param section: The section to write to. |
| 54 | """ |
| 55 | self._add_title(section) |
| 56 | self._add_class_signature(section) |
| 57 | client_methods = self._get_client_methods() |
| 58 | self._add_client_intro(section, client_methods) |
| 59 | self._add_client_methods(client_methods) |
| 60 | |
| 61 | def _get_client_methods(self): |
| 62 | client_methods = get_instance_public_methods(self._client) |