Searched refs:body_value (Results 1 – 3 of 3) sorted by relevance
/external/python/google-api-python-client/googleapiclient/ |
D | model.py | 55 def request(self, headers, path_params, query_params, body_value): argument 125 def request(self, headers, path_params, query_params, body_value): argument 159 if body_value is not None: 161 body_value = self.serialize(body_value) 162 self._log_request(headers, path_params, query, body_value) 163 return (headers, path_params, query, body_value) 224 def serialize(self, body_value): argument 267 def serialize(self, body_value): argument 269 isinstance(body_value, dict) 270 and "data" not in body_value [all …]
|
D | discovery.py | 799 body_value = kwargs.get("body", None) 814 headers, actual_path_params, actual_query_params, body_value
|
/external/python/apitools/apitools/base/py/ |
D | base_api.py | 639 body_value = request 642 body_value = getattr(request, method_config.request_field) 650 body_value = body_value or body_type() 651 if upload and not body_value: 654 util.Typecheck(body_value, body_type) 656 http_request.body = self.__client.SerializeMessage(body_value)
|