MCPcopy Index your code
hub / github.com/StackStorm/st2 / patch

Method patch

st2client/st2client/utils/httpclient.py:154–157  ·  view source on GitHub ↗
(self, url, data, **kwargs)

Source from the content-addressed store, hash-verified

152 @add_json_content_type_to_headers
153 @add_basic_auth_creds_to_kwargs
154 def patch(self, url, data, **kwargs):
155 response = requests.patch(self.root + url, data, **kwargs)
156 response = self._response_hook(response=response)
157 return response
158
159 @add_ssl_verify_to_kwargs
160 @add_auth_token_to_headers

Calls 1

_response_hookMethod · 0.95