@@ -41,6 +41,8 @@ def api_process(self, process_request, **kwargs): # noqa: E501
41
41
42
42
:param process_request: (required)
43
43
:type process_request: ProcessRequest
44
+ :param x_request_id:
45
+ :type x_request_id: str
44
46
:param async_req: Whether to execute the request asynchronously.
45
47
:type async_req: bool, optional
46
48
: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
70
72
71
73
:param process_request: (required)
72
74
:type process_request: ProcessRequest
75
+ :param x_request_id:
76
+ :type x_request_id: str
73
77
:param async_req: Whether to execute the request asynchronously.
74
78
:type async_req: bool, optional
75
79
: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
96
100
local_var_params = locals ()
97
101
98
102
all_params = [
99
- 'process_request'
103
+ 'process_request' ,
104
+ 'x_request_id'
100
105
]
101
106
all_params .extend (
102
107
[
@@ -128,6 +133,8 @@ def api_process_with_http_info(self, process_request, **kwargs): # noqa: E501
128
133
query_params = []
129
134
130
135
header_params = {}
136
+ if 'x_request_id' in local_var_params :
137
+ header_params ['X-RequestID' ] = local_var_params ['x_request_id' ] # noqa: E501
131
138
132
139
form_params = []
133
140
local_var_files = {}
0 commit comments