Get the entire map.
(self, parent_span: Optional[WrappedSpan] = None)
| 418 | raise |
| 419 | |
| 420 | async def _get(self, parent_span: Optional[WrappedSpan] = None) -> Dict: |
| 421 | """ |
| 422 | Get the entire map. |
| 423 | """ |
| 424 | op_type = KeyValueOperationType.Get |
| 425 | async with ObservableRequestHandler(op_type, self._impl.observability_instruments) as obs_handler: |
| 426 | req, transcoder = self._impl.request_builder.build_get_request( |
| 427 | self._key, obs_handler, parent_span=parent_span) |
| 428 | return await self._execute_op(self._impl.get, |
| 429 | req, |
| 430 | obs_handler, |
| 431 | parent_span, |
| 432 | create_type=True, |
| 433 | transcoder=transcoder) |
| 434 | |
| 435 | async def add(self, mapkey: str, value: Any) -> None: |
| 436 | """ |
no test coverage detected