@@ -111,7 +111,6 @@ def get_service_info(self):
111
111
WES API versions supported, and information about general
112
112
the service availability.
113
113
114
- :param object http_client: bravado.requests_client.RequestsClient
115
114
:param str auth: String to send in the auth header.
116
115
:param proto: Schema where the server resides (http, https)
117
116
:param host: Port where the post request will be sent and the wes server listens at (default 8080)
@@ -128,7 +127,6 @@ def list_runs(self):
128
127
live updates as the user traverses the pages, the behavior
129
128
should be decided (and documented) by each implementation.
130
129
131
- :param object http_client: bravado.requests_client.RequestsClient
132
130
:param str auth: String to send in the auth header.
133
131
:param proto: Schema where the server resides (http, https)
134
132
:param host: Port where the post request will be sent and the wes server listens at (default 8080)
@@ -145,7 +143,6 @@ def run(self, wf, jsonyaml, attachments):
145
143
:param str workflow_file: A local/http/https path to a cwl/wdl/python workflow file.
146
144
:param str jsonyaml: A local path to a json or yaml file.
147
145
:param list attachments: A list of local paths to files that will be uploaded to the server.
148
- :param object http_client: bravado.requests_client.RequestsClient
149
146
:param str auth: String to send in the auth header.
150
147
:param proto: Schema where the server resides (http, https)
151
148
:param host: Port where the post request will be sent and the wes server listens at (default 8080)
@@ -163,7 +160,6 @@ def cancel(self, run_id):
163
160
Cancel a running workflow.
164
161
165
162
:param run_id: String (typically a uuid) identifying the run.
166
- :param object http_client: bravado.requests_client.RequestsClient
167
163
:param str auth: String to send in the auth header.
168
164
:param proto: Schema where the server resides (http, https)
169
165
:param host: Port where the post request will be sent and the wes server listens at (default 8080)
@@ -178,7 +174,6 @@ def get_run_log(self, run_id):
178
174
Get detailed info about a running workflow.
179
175
180
176
:param run_id: String (typically a uuid) identifying the run.
181
- :param object http_client: bravado.requests_client.RequestsClient
182
177
:param str auth: String to send in the auth header.
183
178
:param proto: Schema where the server resides (http, https)
184
179
:param host: Port where the post request will be sent and the wes server listens at (default 8080)
@@ -193,7 +188,6 @@ def get_run_status(self, run_id):
193
188
Get quick status info about a running workflow.
194
189
195
190
:param run_id: String (typically a uuid) identifying the run.
196
- :param object http_client: bravado.requests_client.RequestsClient
197
191
:param str auth: String to send in the auth header.
198
192
:param proto: Schema where the server resides (http, https)
199
193
:param host: Port where the post request will be sent and the wes server listens at (default 8080)
0 commit comments