lentiq.api.workflow_public_api_controller_api module
# coding: utf-8 """ """ from __future__ import absolute_import import re # noqa: F401 # python 2 and python 3 compatibility library import six from lentiq.api_client import ApiClient class WorkflowPublicApiControllerApi(object): """ Ref: """ def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client def create_workflow(self, body, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Create workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.create_workflow(body, authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param Workflow body: workflow (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.create_workflow_with_http_info(body, authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.create_workflow_with_http_info(body, authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data def create_workflow_with_http_info(self, body, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Create workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.create_workflow_with_http_info(body, authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param Workflow body: workflow (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method create_workflow" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'body' is set if ('body' not in params or params['body'] is None): raise ValueError("Missing the required parameter `body` when calling `create_workflow`") # noqa: E501 # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `create_workflow`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `create_workflow`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `create_workflow`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}/{projectName}', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Workflow', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def delete_workflow(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Delete workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.delete_workflow(authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.delete_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.delete_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def delete_workflow_with_http_info(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Delete workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.delete_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name', 'workflow_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method delete_workflow" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `delete_workflow`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `delete_workflow`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `delete_workflow`") # noqa: E501 # verify the required parameter 'workflow_name' is set if ('workflow_name' not in params or params['workflow_name'] is None): raise ValueError("Missing the required parameter `workflow_name` when calling `delete_workflow`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'workflow_name' in params: path_params['workflowName'] = params['workflow_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}/{projectName}/{workflowName}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Workflow', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def get_workflow(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Get workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_workflow(authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.get_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def get_workflow_with_http_info(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Get workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name', 'workflow_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method get_workflow" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `get_workflow`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `get_workflow`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `get_workflow`") # noqa: E501 # verify the required parameter 'workflow_name' is set if ('workflow_name' not in params or params['workflow_name'] is None): raise ValueError("Missing the required parameter `workflow_name` when calling `get_workflow`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'workflow_name' in params: path_params['workflowName'] = params['workflow_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}/{projectName}/{workflowName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Workflow', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def list_workflows_for_datapool(self, authorization, datapool_name, **kwargs): # noqa: E501 """List workflows for datapool. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list_workflows_for_datapool(authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: list[Workflow] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflows_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 else: (data) = self.list_workflows_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 return data def list_workflows_for_datapool_with_http_info(self, authorization, datapool_name, **kwargs): # noqa: E501 """List workflows for datapool. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list_workflows_for_datapool_with_http_info(authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: list[Workflow] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method list_workflows_for_datapool" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `list_workflows_for_datapool`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `list_workflows_for_datapool`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Workflow]', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def list_workflows_for_project(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """List workflows for project. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list_workflows_for_project(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: list[Workflow] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflows_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.list_workflows_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data def list_workflows_for_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """List workflows for project. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list_workflows_for_project_with_http_info(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: list[Workflow] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method list_workflows_for_project" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `list_workflows_for_project`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `list_workflows_for_project`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `list_workflows_for_project`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}/{projectName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Workflow]', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def update_workflow(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Update workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_workflow(body, authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param Workflow body: workflow (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.update_workflow_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.update_workflow_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def update_workflow_with_http_info(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Update workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_workflow_with_http_info(body, authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param Workflow body: workflow (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization', 'datapool_name', 'project_name', 'workflow_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method update_workflow" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'body' is set if ('body' not in params or params['body'] is None): raise ValueError("Missing the required parameter `body` when calling `update_workflow`") # noqa: E501 # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `update_workflow`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `update_workflow`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `update_workflow`") # noqa: E501 # verify the required parameter 'workflow_name' is set if ('workflow_name' not in params or params['workflow_name'] is None): raise ValueError("Missing the required parameter `workflow_name` when calling `update_workflow`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'workflow_name' in params: path_params['workflowName'] = params['workflow_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}/{projectName}/{workflowName}', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Workflow', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats)
Classes
class WorkflowPublicApiControllerApi
Ref:
class WorkflowPublicApiControllerApi(object): """ Ref: """ def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client def create_workflow(self, body, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Create workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.create_workflow(body, authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param Workflow body: workflow (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.create_workflow_with_http_info(body, authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.create_workflow_with_http_info(body, authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data def create_workflow_with_http_info(self, body, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Create workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.create_workflow_with_http_info(body, authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param Workflow body: workflow (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method create_workflow" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'body' is set if ('body' not in params or params['body'] is None): raise ValueError("Missing the required parameter `body` when calling `create_workflow`") # noqa: E501 # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `create_workflow`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `create_workflow`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `create_workflow`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}/{projectName}', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Workflow', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def delete_workflow(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Delete workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.delete_workflow(authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.delete_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.delete_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def delete_workflow_with_http_info(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Delete workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.delete_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name', 'workflow_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method delete_workflow" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `delete_workflow`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `delete_workflow`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `delete_workflow`") # noqa: E501 # verify the required parameter 'workflow_name' is set if ('workflow_name' not in params or params['workflow_name'] is None): raise ValueError("Missing the required parameter `workflow_name` when calling `delete_workflow`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'workflow_name' in params: path_params['workflowName'] = params['workflow_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}/{projectName}/{workflowName}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Workflow', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def get_workflow(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Get workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_workflow(authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.get_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def get_workflow_with_http_info(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Get workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name', 'workflow_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method get_workflow" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `get_workflow`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `get_workflow`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `get_workflow`") # noqa: E501 # verify the required parameter 'workflow_name' is set if ('workflow_name' not in params or params['workflow_name'] is None): raise ValueError("Missing the required parameter `workflow_name` when calling `get_workflow`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'workflow_name' in params: path_params['workflowName'] = params['workflow_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}/{projectName}/{workflowName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Workflow', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def list_workflows_for_datapool(self, authorization, datapool_name, **kwargs): # noqa: E501 """List workflows for datapool. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list_workflows_for_datapool(authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: list[Workflow] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflows_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 else: (data) = self.list_workflows_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 return data def list_workflows_for_datapool_with_http_info(self, authorization, datapool_name, **kwargs): # noqa: E501 """List workflows for datapool. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list_workflows_for_datapool_with_http_info(authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: list[Workflow] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method list_workflows_for_datapool" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `list_workflows_for_datapool`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `list_workflows_for_datapool`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Workflow]', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def list_workflows_for_project(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """List workflows for project. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list_workflows_for_project(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: list[Workflow] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflows_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.list_workflows_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data def list_workflows_for_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """List workflows for project. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list_workflows_for_project_with_http_info(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: list[Workflow] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method list_workflows_for_project" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `list_workflows_for_project`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `list_workflows_for_project`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `list_workflows_for_project`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}/{projectName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Workflow]', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def update_workflow(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Update workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_workflow(body, authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param Workflow body: workflow (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.update_workflow_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.update_workflow_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def update_workflow_with_http_info(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Update workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_workflow_with_http_info(body, authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param Workflow body: workflow (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization', 'datapool_name', 'project_name', 'workflow_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method update_workflow" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'body' is set if ('body' not in params or params['body'] is None): raise ValueError("Missing the required parameter `body` when calling `update_workflow`") # noqa: E501 # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `update_workflow`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `update_workflow`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `update_workflow`") # noqa: E501 # verify the required parameter 'workflow_name' is set if ('workflow_name' not in params or params['workflow_name'] is None): raise ValueError("Missing the required parameter `workflow_name` when calling `update_workflow`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'workflow_name' in params: path_params['workflowName'] = params['workflow_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}/{projectName}/{workflowName}', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Workflow', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats)
Ancestors (in MRO)
- WorkflowPublicApiControllerApi
- builtins.object
Static methods
def __init__(
self, api_client=None)
Initialize self. See help(type(self)) for accurate signature.
def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client
def create_workflow(
self, body, authorization, datapool_name, project_name, **kwargs)
Create workflow. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.create_workflow(body, authorization, datapool_name, project_name, async_req=True) result = thread.get()
:param async_req bool :param Workflow body: workflow (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Workflow If the method is called asynchronously, returns the request thread.
def create_workflow(self, body, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Create workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.create_workflow(body, authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param Workflow body: workflow (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.create_workflow_with_http_info(body, authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.create_workflow_with_http_info(body, authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data
def create_workflow_with_http_info(
self, body, authorization, datapool_name, project_name, **kwargs)
Create workflow. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.create_workflow_with_http_info(body, authorization, datapool_name, project_name, async_req=True) result = thread.get()
:param async_req bool :param Workflow body: workflow (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Workflow If the method is called asynchronously, returns the request thread.
def create_workflow_with_http_info(self, body, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Create workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.create_workflow_with_http_info(body, authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param Workflow body: workflow (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method create_workflow" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'body' is set if ('body' not in params or params['body'] is None): raise ValueError("Missing the required parameter `body` when calling `create_workflow`") # noqa: E501 # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `create_workflow`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `create_workflow`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `create_workflow`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}/{projectName}', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Workflow', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats)
def delete_workflow(
self, authorization, datapool_name, project_name, workflow_name, **kwargs)
Delete workflow. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.delete_workflow(authorization, datapool_name, project_name, workflow_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread.
def delete_workflow(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Delete workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.delete_workflow(authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.delete_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.delete_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 return data
def delete_workflow_with_http_info(
self, authorization, datapool_name, project_name, workflow_name, **kwargs)
Delete workflow. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.delete_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread.
def delete_workflow_with_http_info(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Delete workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.delete_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name', 'workflow_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method delete_workflow" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `delete_workflow`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `delete_workflow`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `delete_workflow`") # noqa: E501 # verify the required parameter 'workflow_name' is set if ('workflow_name' not in params or params['workflow_name'] is None): raise ValueError("Missing the required parameter `workflow_name` when calling `delete_workflow`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'workflow_name' in params: path_params['workflowName'] = params['workflow_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}/{projectName}/{workflowName}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Workflow', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats)
def get_workflow(
self, authorization, datapool_name, project_name, workflow_name, **kwargs)
Get workflow. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.get_workflow(authorization, datapool_name, project_name, workflow_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread.
def get_workflow(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Get workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_workflow(authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.get_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 return data
def get_workflow_with_http_info(
self, authorization, datapool_name, project_name, workflow_name, **kwargs)
Get workflow. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.get_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread.
def get_workflow_with_http_info(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Get workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name', 'workflow_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method get_workflow" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `get_workflow`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `get_workflow`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `get_workflow`") # noqa: E501 # verify the required parameter 'workflow_name' is set if ('workflow_name' not in params or params['workflow_name'] is None): raise ValueError("Missing the required parameter `workflow_name` when calling `get_workflow`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'workflow_name' in params: path_params['workflowName'] = params['workflow_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}/{projectName}/{workflowName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Workflow', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats)
def list_workflows_for_datapool(
self, authorization, datapool_name, **kwargs)
List workflows for datapool. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.list_workflows_for_datapool(authorization, datapool_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: list[Workflow] If the method is called asynchronously, returns the request thread.
def list_workflows_for_datapool(self, authorization, datapool_name, **kwargs): # noqa: E501 """List workflows for datapool. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list_workflows_for_datapool(authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: list[Workflow] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflows_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 else: (data) = self.list_workflows_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 return data
def list_workflows_for_datapool_with_http_info(
self, authorization, datapool_name, **kwargs)
List workflows for datapool. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.list_workflows_for_datapool_with_http_info(authorization, datapool_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: list[Workflow] If the method is called asynchronously, returns the request thread.
def list_workflows_for_datapool_with_http_info(self, authorization, datapool_name, **kwargs): # noqa: E501 """List workflows for datapool. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list_workflows_for_datapool_with_http_info(authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: list[Workflow] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method list_workflows_for_datapool" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `list_workflows_for_datapool`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `list_workflows_for_datapool`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Workflow]', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats)
def list_workflows_for_project(
self, authorization, datapool_name, project_name, **kwargs)
List workflows for project. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.list_workflows_for_project(authorization, datapool_name, project_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: list[Workflow] If the method is called asynchronously, returns the request thread.
def list_workflows_for_project(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """List workflows for project. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list_workflows_for_project(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: list[Workflow] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflows_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.list_workflows_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data
def list_workflows_for_project_with_http_info(
self, authorization, datapool_name, project_name, **kwargs)
List workflows for project. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.list_workflows_for_project_with_http_info(authorization, datapool_name, project_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: list[Workflow] If the method is called asynchronously, returns the request thread.
def list_workflows_for_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """List workflows for project. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list_workflows_for_project_with_http_info(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: list[Workflow] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method list_workflows_for_project" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `list_workflows_for_project`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `list_workflows_for_project`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `list_workflows_for_project`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}/{projectName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Workflow]', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats)
def update_workflow(
self, body, authorization, datapool_name, project_name, workflow_name, **kwargs)
Update workflow. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.update_workflow(body, authorization, datapool_name, project_name, workflow_name, async_req=True) result = thread.get()
:param async_req bool :param Workflow body: workflow (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread.
def update_workflow(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Update workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_workflow(body, authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param Workflow body: workflow (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.update_workflow_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.update_workflow_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 return data
def update_workflow_with_http_info(
self, body, authorization, datapool_name, project_name, workflow_name, **kwargs)
Update workflow. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.update_workflow_with_http_info(body, authorization, datapool_name, project_name, workflow_name, async_req=True) result = thread.get()
:param async_req bool :param Workflow body: workflow (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread.
def update_workflow_with_http_info(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Update workflow. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_workflow_with_http_info(body, authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param Workflow body: workflow (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: Workflow If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization', 'datapool_name', 'project_name', 'workflow_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method update_workflow" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'body' is set if ('body' not in params or params['body'] is None): raise ValueError("Missing the required parameter `body` when calling `update_workflow`") # noqa: E501 # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `update_workflow`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `update_workflow`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `update_workflow`") # noqa: E501 # verify the required parameter 'workflow_name' is set if ('workflow_name' not in params or params['workflow_name'] is None): raise ValueError("Missing the required parameter `workflow_name` when calling `update_workflow`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'workflow_name' in params: path_params['workflowName'] = params['workflow_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/workflows/{datapoolName}/{projectName}/{workflowName}', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Workflow', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats)
Instance variables
var api_client