(self, section)
| 93 | ).document_exceptions(section) |
| 94 | |
| 95 | def paginator_api(self, section): |
| 96 | try: |
| 97 | service_paginator_model = self._session.get_paginator_model( |
| 98 | self._service_name |
| 99 | ) |
| 100 | except DataNotFoundError: |
| 101 | return |
| 102 | if service_paginator_model._paginator_config: |
| 103 | paginator_documenter = PaginatorDocumenter( |
| 104 | self._client, service_paginator_model, self._root_docs_path |
| 105 | ) |
| 106 | paginator_documenter.document_paginators(section) |
| 107 | |
| 108 | def waiter_api(self, section): |
| 109 | if self._client.waiter_names: |
no test coverage detected