@@ -41,6 +41,8 @@ def api_process(self, process_request, **kwargs): # noqa: E501
4141
4242 :param process_request: (required)
4343 :type process_request: ProcessRequest
44+ :param x_request_id:
45+ :type x_request_id: str
4446 :param async_req: Whether to execute the request asynchronously.
4547 :type async_req: bool, optional
4648 :param _preload_content: if False, the urllib3.HTTPResponse object will
@@ -70,6 +72,8 @@ def api_process_with_http_info(self, process_request, **kwargs): # noqa: E501
7072
7173 :param process_request: (required)
7274 :type process_request: ProcessRequest
75+ :param x_request_id:
76+ :type x_request_id: str
7377 :param async_req: Whether to execute the request asynchronously.
7478 :type async_req: bool, optional
7579 :param _return_http_data_only: response data without head status code
@@ -96,7 +100,8 @@ def api_process_with_http_info(self, process_request, **kwargs): # noqa: E501
96100 local_var_params = locals ()
97101
98102 all_params = [
99- 'process_request'
103+ 'process_request' ,
104+ 'x_request_id'
100105 ]
101106 all_params .extend (
102107 [
@@ -128,6 +133,8 @@ def api_process_with_http_info(self, process_request, **kwargs): # noqa: E501
128133 query_params = []
129134
130135 header_params = {}
136+ if 'x_request_id' in local_var_params :
137+ header_params ['X-RequestID' ] = local_var_params ['x_request_id' ] # noqa: E501
131138
132139 form_params = []
133140 local_var_files = {}
0 commit comments