(self, body)
| 869 | ] |
| 870 | |
| 871 | def _encode_payload(self, body): |
| 872 | if isinstance(body, str): |
| 873 | return body.encode(self.DEFAULT_ENCODING) |
| 874 | return body |
| 875 | |
| 876 | def _partition_parameters( |
| 877 | self, partitioned, param_name, param_value, shape_members |
no test coverage detected