(
self,
*,
requested_at: typing.Optional[float] = OMIT,
received_at: typing.Optional[float] = OMIT,
req_payload: typing.Optional[typing.Any] = OMIT,
resp_payload: typing.Optional[typing.Any] = OMIT,
status_code: typing.Optional[float] = OMIT,
error_message: typing.Optional[str] = OMIT,
tags: typing.Optional[typing.Dict[str, ReportRequestTagsValue]] = {},
)
| 148 | self.base_client._client_wrapper._base_url = value |
| 149 | |
| 150 | async def report( |
| 151 | self, |
| 152 | *, |
| 153 | requested_at: typing.Optional[float] = OMIT, |
| 154 | received_at: typing.Optional[float] = OMIT, |
| 155 | req_payload: typing.Optional[typing.Any] = OMIT, |
| 156 | resp_payload: typing.Optional[typing.Any] = OMIT, |
| 157 | status_code: typing.Optional[float] = OMIT, |
| 158 | error_message: typing.Optional[str] = OMIT, |
| 159 | tags: typing.Optional[typing.Dict[str, ReportRequestTagsValue]] = {}, |
| 160 | ) -> ReportResponse: |
| 161 | return await self.base_client.report( |
| 162 | requested_at=requested_at, |
| 163 | received_at=received_at, |
| 164 | req_payload=req_payload, |
| 165 | resp_payload=resp_payload, |
| 166 | status_code=status_code, |
| 167 | error_message=error_message, |
| 168 | tags=add_sdk_info(tags), |
| 169 | ) |
| 170 | |
| 171 | async def update_log_tags( |
| 172 | self, |
nothing calls this directly
no test coverage detected