(self, name)
| 754 | return first_non_none_response(responses) |
| 755 | |
| 756 | def get_component(self, name): |
| 757 | try: |
| 758 | return self._components.get_component(name) |
| 759 | except ValueError: |
| 760 | if name in ['endpoint_resolver', 'exceptions_factory']: |
| 761 | warnings.warn( |
| 762 | f'Fetching the {name} component with the get_component() ' |
| 763 | 'method is deprecated as the component has always been ' |
| 764 | 'considered an internal interface of botocore', |
| 765 | DeprecationWarning, |
| 766 | ) |
| 767 | return self._internal_components.get_component(name) |
| 768 | raise |
| 769 | |
| 770 | def _get_internal_component(self, name): |
| 771 | # While this method may be called by botocore classes outside of the |
no outgoing calls