Issue 2410: Suport HTTP body for DELETE operation

This commit is contained in:
Scott Williams
2016-03-19 16:51:02 +00:00
parent c3507e43a3
commit 4e5ba15fa0
4 changed files with 17 additions and 12 deletions

View File

@@ -371,7 +371,8 @@ class ApiClient(object):
elif method == "DELETE":
return self.rest_client.DELETE(url,
query_params=query_params,
headers=headers)
headers=headers,
body=body)
else:
raise ValueError(
"http method must be `GET`, `HEAD`,"