Home
last modified time | relevance | path

Searched refs:body_value (Results 1 – 3 of 3) sorted by relevance

/external/python/google-api-python-client/googleapiclient/
Dmodel.py53 def request(self, headers, path_params, query_params, body_value): argument
123 def request(self, headers, path_params, query_params, body_value): argument
149 if body_value is not None:
151 body_value = self.serialize(body_value)
152 self._log_request(headers, path_params, query, body_value)
153 return (headers, path_params, query, body_value)
214 def serialize(self, body_value): argument
256 def serialize(self, body_value): argument
257 if (isinstance(body_value, dict) and 'data' not in body_value and
259 body_value = {'data': body_value}
[all …]
Ddiscovery.py780 body_value = kwargs.get('body', None)
795 actual_path_params, actual_query_params, body_value)
/external/python/apitools/apitools/base/py/
Dbase_api.py631 body_value = request
634 body_value = getattr(request, method_config.request_field)
642 body_value = body_value or body_type()
643 if upload and not body_value:
646 util.Typecheck(body_value, body_type)
648 http_request.body = self.__client.SerializeMessage(body_value)