lentiq.api.workflow_execution_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 WorkflowExecutionPublicApiControllerApi(object): """ Ref: """ def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client def create_workflow_execution(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Create workflow execution. # 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_execution(body, authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param WorkflowExecution body: execution (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: WorkflowExecution 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_execution_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.create_workflow_execution_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def create_workflow_execution_with_http_info(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Create workflow execution. # 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_execution_with_http_info(body, authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param WorkflowExecution body: execution (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: WorkflowExecution 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 create_workflow_execution" % 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_execution`") # 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_execution`") # 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_execution`") # 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_execution`") # 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 `create_workflow_execution`") # 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}/executions', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Delete workflow execution. # 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_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution 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_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.delete_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def delete_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Delete workflow execution. # 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_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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_execution" % 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_execution`") # 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_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `delete_workflow_execution`") # 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_execution`") # 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_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Get workflow execution. # 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_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution 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_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.get_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def get_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Get workflow execution. # 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_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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_execution" % 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_execution`") # 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_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `get_workflow_execution`") # 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_execution`") # 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_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 kill_workflow_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Kills all running workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.kill_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.kill_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.kill_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def kill_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Kills all running workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.kill_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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 kill_workflow_execution" % 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 `kill_workflow_execution`") # 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 `kill_workflow_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `kill_workflow_execution`") # 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 `kill_workflow_execution`") # 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 `kill_workflow_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}/kill', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 kill_workflow_execution_task(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Kills a running workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.kill_workflow_execution_task(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.kill_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.kill_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 return data def kill_workflow_execution_task_with_http_info(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Kills a running workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.kill_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_name', 'project_name', 'task_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 kill_workflow_execution_task" % 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 `kill_workflow_execution_task`") # 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 `kill_workflow_execution_task`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `kill_workflow_execution_task`") # 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 `kill_workflow_execution_task`") # noqa: E501 # verify the required parameter 'task_name' is set if ('task_name' not in params or params['task_name'] is None): raise ValueError("Missing the required parameter `task_name` when calling `kill_workflow_execution_task`") # 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 `kill_workflow_execution_task`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'task_name' in params: path_params['taskName'] = params['task_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}/executions/{executionName}/kill/{taskName}', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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_workflow_executions_for_datapool(self, authorization, datapool_name, **kwargs): # noqa: E501 """List workflow executions 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_workflow_executions_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[WorkflowExecution] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflow_executions_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 else: (data) = self.list_workflow_executions_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 return data def list_workflow_executions_for_datapool_with_http_info(self, authorization, datapool_name, **kwargs): # noqa: E501 """List workflow executions 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_workflow_executions_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[WorkflowExecution] 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_workflow_executions_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_workflow_executions_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_workflow_executions_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}/executions', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[WorkflowExecution]', # 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_workflow_executions_for_project(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """List workflow executions 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_workflow_executions_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[WorkflowExecution] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflow_executions_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.list_workflow_executions_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data def list_workflow_executions_for_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """List workflow executions 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_workflow_executions_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[WorkflowExecution] 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_workflow_executions_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_workflow_executions_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_workflow_executions_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_workflow_executions_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}/executions', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[WorkflowExecution]', # 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_workflow_executions_for_workflow(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """List workflow executions for 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.list_workflow_executions_for_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: list[WorkflowExecution] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflow_executions_for_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.list_workflow_executions_for_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def list_workflow_executions_for_workflow_with_http_info(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """List workflow executions for 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.list_workflow_executions_for_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: list[WorkflowExecution] 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 list_workflow_executions_for_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 `list_workflow_executions_for_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 `list_workflow_executions_for_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 `list_workflow_executions_for_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 `list_workflow_executions_for_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}/executions', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[WorkflowExecution]', # 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_workflow_executions_for_workflow_schedule(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs): # noqa: E501 """List workflow executions for workflow schedule. # 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_workflow_executions_for_workflow_schedule(authorization, datapool_name, project_name, schedule_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 schedule_name: scheduleName (required) :param str workflow_name: workflowName (required) :return: list[WorkflowExecution] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflow_executions_for_workflow_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.list_workflow_executions_for_workflow_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs) # noqa: E501 return data def list_workflow_executions_for_workflow_schedule_with_http_info(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs): # noqa: E501 """List workflow executions for workflow schedule. # 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_workflow_executions_for_workflow_schedule_with_http_info(authorization, datapool_name, project_name, schedule_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 schedule_name: scheduleName (required) :param str workflow_name: workflowName (required) :return: list[WorkflowExecution] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name', 'schedule_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 list_workflow_executions_for_workflow_schedule" % 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_workflow_executions_for_workflow_schedule`") # 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_workflow_executions_for_workflow_schedule`") # 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_workflow_executions_for_workflow_schedule`") # noqa: E501 # verify the required parameter 'schedule_name' is set if ('schedule_name' not in params or params['schedule_name'] is None): raise ValueError("Missing the required parameter `schedule_name` when calling `list_workflow_executions_for_workflow_schedule`") # 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 `list_workflow_executions_for_workflow_schedule`") # 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 'schedule_name' in params: path_params['scheduleName'] = params['schedule_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}/schedules/{scheduleName}/executions', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[WorkflowExecution]', # 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 pause_workflow_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Pauses a running workflow execution. A paused workflow execution can be resumed. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.pause_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.pause_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.pause_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def pause_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Pauses a running workflow execution. A paused workflow execution can be resumed. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.pause_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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 pause_workflow_execution" % 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 `pause_workflow_execution`") # 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 `pause_workflow_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `pause_workflow_execution`") # 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 `pause_workflow_execution`") # 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 `pause_workflow_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}/pause', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 resume_workflow_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Resumes a paused workflow execution. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.resume_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.resume_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.resume_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def resume_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Resumes a paused workflow execution. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.resume_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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 resume_workflow_execution" % 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 `resume_workflow_execution`") # 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 `resume_workflow_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `resume_workflow_execution`") # 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 `resume_workflow_execution`") # 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 `resume_workflow_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}/resume', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 retry_workflow_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Retry all failed workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.retry_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.retry_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.retry_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def retry_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Retry all failed workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.retry_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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 retry_workflow_execution" % 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 `retry_workflow_execution`") # 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 `retry_workflow_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `retry_workflow_execution`") # 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 `retry_workflow_execution`") # 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 `retry_workflow_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}/retry', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 retry_workflow_execution_task(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Retry a failed workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.retry_workflow_execution_task(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.retry_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.retry_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 return data def retry_workflow_execution_task_with_http_info(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Retry a failed workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.retry_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_name', 'project_name', 'task_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 retry_workflow_execution_task" % 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 `retry_workflow_execution_task`") # 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 `retry_workflow_execution_task`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `retry_workflow_execution_task`") # 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 `retry_workflow_execution_task`") # noqa: E501 # verify the required parameter 'task_name' is set if ('task_name' not in params or params['task_name'] is None): raise ValueError("Missing the required parameter `task_name` when calling `retry_workflow_execution_task`") # 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 `retry_workflow_execution_task`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'task_name' in params: path_params['taskName'] = params['task_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}/executions/{executionName}/retry/{taskName}', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 skip_workflow_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Skip all failed workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.skip_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.skip_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.skip_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def skip_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Skip all failed workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.skip_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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 skip_workflow_execution" % 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 `skip_workflow_execution`") # 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 `skip_workflow_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `skip_workflow_execution`") # 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 `skip_workflow_execution`") # 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 `skip_workflow_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}/skip', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 skip_workflow_execution_task(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Skip a failed workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.skip_workflow_execution_task(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.skip_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.skip_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 return data def skip_workflow_execution_task_with_http_info(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Skip a failed workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.skip_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_name', 'project_name', 'task_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 skip_workflow_execution_task" % 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 `skip_workflow_execution_task`") # 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 `skip_workflow_execution_task`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `skip_workflow_execution_task`") # 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 `skip_workflow_execution_task`") # noqa: E501 # verify the required parameter 'task_name' is set if ('task_name' not in params or params['task_name'] is None): raise ValueError("Missing the required parameter `task_name` when calling `skip_workflow_execution_task`") # 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 `skip_workflow_execution_task`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'task_name' in params: path_params['taskName'] = params['task_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}/executions/{executionName}/skip/{taskName}', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 workflow_execution_task_logs(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Gets the logs of a workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.workflow_execution_task_logs(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: str If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.workflow_execution_task_logs_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.workflow_execution_task_logs_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 return data def workflow_execution_task_logs_with_http_info(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Gets the logs of a workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.workflow_execution_task_logs_with_http_info(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: str If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_name', 'project_name', 'task_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 workflow_execution_task_logs" % 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 `workflow_execution_task_logs`") # 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 `workflow_execution_task_logs`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `workflow_execution_task_logs`") # 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 `workflow_execution_task_logs`") # noqa: E501 # verify the required parameter 'task_name' is set if ('task_name' not in params or params['task_name'] is None): raise ValueError("Missing the required parameter `task_name` when calling `workflow_execution_task_logs`") # 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 `workflow_execution_task_logs`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'task_name' in params: path_params['taskName'] = params['task_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}/executions/{executionName}/logs/{taskName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='str', # 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 WorkflowExecutionPublicApiControllerApi
Ref:
class WorkflowExecutionPublicApiControllerApi(object): """ Ref: """ def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client def create_workflow_execution(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Create workflow execution. # 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_execution(body, authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param WorkflowExecution body: execution (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: WorkflowExecution 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_execution_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.create_workflow_execution_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def create_workflow_execution_with_http_info(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Create workflow execution. # 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_execution_with_http_info(body, authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param WorkflowExecution body: execution (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: WorkflowExecution 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 create_workflow_execution" % 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_execution`") # 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_execution`") # 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_execution`") # 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_execution`") # 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 `create_workflow_execution`") # 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}/executions', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Delete workflow execution. # 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_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution 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_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.delete_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def delete_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Delete workflow execution. # 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_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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_execution" % 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_execution`") # 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_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `delete_workflow_execution`") # 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_execution`") # 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_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Get workflow execution. # 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_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution 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_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.get_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def get_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Get workflow execution. # 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_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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_execution" % 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_execution`") # 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_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `get_workflow_execution`") # 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_execution`") # 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_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 kill_workflow_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Kills all running workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.kill_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.kill_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.kill_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def kill_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Kills all running workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.kill_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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 kill_workflow_execution" % 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 `kill_workflow_execution`") # 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 `kill_workflow_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `kill_workflow_execution`") # 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 `kill_workflow_execution`") # 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 `kill_workflow_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}/kill', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 kill_workflow_execution_task(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Kills a running workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.kill_workflow_execution_task(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.kill_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.kill_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 return data def kill_workflow_execution_task_with_http_info(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Kills a running workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.kill_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_name', 'project_name', 'task_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 kill_workflow_execution_task" % 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 `kill_workflow_execution_task`") # 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 `kill_workflow_execution_task`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `kill_workflow_execution_task`") # 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 `kill_workflow_execution_task`") # noqa: E501 # verify the required parameter 'task_name' is set if ('task_name' not in params or params['task_name'] is None): raise ValueError("Missing the required parameter `task_name` when calling `kill_workflow_execution_task`") # 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 `kill_workflow_execution_task`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'task_name' in params: path_params['taskName'] = params['task_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}/executions/{executionName}/kill/{taskName}', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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_workflow_executions_for_datapool(self, authorization, datapool_name, **kwargs): # noqa: E501 """List workflow executions 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_workflow_executions_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[WorkflowExecution] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflow_executions_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 else: (data) = self.list_workflow_executions_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 return data def list_workflow_executions_for_datapool_with_http_info(self, authorization, datapool_name, **kwargs): # noqa: E501 """List workflow executions 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_workflow_executions_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[WorkflowExecution] 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_workflow_executions_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_workflow_executions_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_workflow_executions_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}/executions', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[WorkflowExecution]', # 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_workflow_executions_for_project(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """List workflow executions 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_workflow_executions_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[WorkflowExecution] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflow_executions_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.list_workflow_executions_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data def list_workflow_executions_for_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """List workflow executions 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_workflow_executions_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[WorkflowExecution] 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_workflow_executions_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_workflow_executions_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_workflow_executions_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_workflow_executions_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}/executions', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[WorkflowExecution]', # 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_workflow_executions_for_workflow(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """List workflow executions for 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.list_workflow_executions_for_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: list[WorkflowExecution] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflow_executions_for_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.list_workflow_executions_for_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def list_workflow_executions_for_workflow_with_http_info(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """List workflow executions for 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.list_workflow_executions_for_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: list[WorkflowExecution] 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 list_workflow_executions_for_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 `list_workflow_executions_for_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 `list_workflow_executions_for_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 `list_workflow_executions_for_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 `list_workflow_executions_for_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}/executions', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[WorkflowExecution]', # 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_workflow_executions_for_workflow_schedule(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs): # noqa: E501 """List workflow executions for workflow schedule. # 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_workflow_executions_for_workflow_schedule(authorization, datapool_name, project_name, schedule_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 schedule_name: scheduleName (required) :param str workflow_name: workflowName (required) :return: list[WorkflowExecution] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflow_executions_for_workflow_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.list_workflow_executions_for_workflow_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs) # noqa: E501 return data def list_workflow_executions_for_workflow_schedule_with_http_info(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs): # noqa: E501 """List workflow executions for workflow schedule. # 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_workflow_executions_for_workflow_schedule_with_http_info(authorization, datapool_name, project_name, schedule_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 schedule_name: scheduleName (required) :param str workflow_name: workflowName (required) :return: list[WorkflowExecution] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name', 'schedule_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 list_workflow_executions_for_workflow_schedule" % 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_workflow_executions_for_workflow_schedule`") # 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_workflow_executions_for_workflow_schedule`") # 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_workflow_executions_for_workflow_schedule`") # noqa: E501 # verify the required parameter 'schedule_name' is set if ('schedule_name' not in params or params['schedule_name'] is None): raise ValueError("Missing the required parameter `schedule_name` when calling `list_workflow_executions_for_workflow_schedule`") # 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 `list_workflow_executions_for_workflow_schedule`") # 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 'schedule_name' in params: path_params['scheduleName'] = params['schedule_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}/schedules/{scheduleName}/executions', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[WorkflowExecution]', # 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 pause_workflow_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Pauses a running workflow execution. A paused workflow execution can be resumed. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.pause_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.pause_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.pause_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def pause_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Pauses a running workflow execution. A paused workflow execution can be resumed. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.pause_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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 pause_workflow_execution" % 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 `pause_workflow_execution`") # 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 `pause_workflow_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `pause_workflow_execution`") # 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 `pause_workflow_execution`") # 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 `pause_workflow_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}/pause', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 resume_workflow_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Resumes a paused workflow execution. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.resume_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.resume_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.resume_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def resume_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Resumes a paused workflow execution. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.resume_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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 resume_workflow_execution" % 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 `resume_workflow_execution`") # 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 `resume_workflow_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `resume_workflow_execution`") # 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 `resume_workflow_execution`") # 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 `resume_workflow_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}/resume', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 retry_workflow_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Retry all failed workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.retry_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.retry_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.retry_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def retry_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Retry all failed workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.retry_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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 retry_workflow_execution" % 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 `retry_workflow_execution`") # 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 `retry_workflow_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `retry_workflow_execution`") # 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 `retry_workflow_execution`") # 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 `retry_workflow_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}/retry', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 retry_workflow_execution_task(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Retry a failed workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.retry_workflow_execution_task(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.retry_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.retry_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 return data def retry_workflow_execution_task_with_http_info(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Retry a failed workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.retry_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_name', 'project_name', 'task_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 retry_workflow_execution_task" % 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 `retry_workflow_execution_task`") # 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 `retry_workflow_execution_task`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `retry_workflow_execution_task`") # 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 `retry_workflow_execution_task`") # noqa: E501 # verify the required parameter 'task_name' is set if ('task_name' not in params or params['task_name'] is None): raise ValueError("Missing the required parameter `task_name` when calling `retry_workflow_execution_task`") # 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 `retry_workflow_execution_task`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'task_name' in params: path_params['taskName'] = params['task_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}/executions/{executionName}/retry/{taskName}', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 skip_workflow_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Skip all failed workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.skip_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.skip_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.skip_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data def skip_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Skip all failed workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.skip_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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 skip_workflow_execution" % 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 `skip_workflow_execution`") # 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 `skip_workflow_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `skip_workflow_execution`") # 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 `skip_workflow_execution`") # 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 `skip_workflow_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}/skip', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 skip_workflow_execution_task(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Skip a failed workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.skip_workflow_execution_task(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.skip_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.skip_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 return data def skip_workflow_execution_task_with_http_info(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Skip a failed workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.skip_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_name', 'project_name', 'task_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 skip_workflow_execution_task" % 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 `skip_workflow_execution_task`") # 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 `skip_workflow_execution_task`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `skip_workflow_execution_task`") # 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 `skip_workflow_execution_task`") # noqa: E501 # verify the required parameter 'task_name' is set if ('task_name' not in params or params['task_name'] is None): raise ValueError("Missing the required parameter `task_name` when calling `skip_workflow_execution_task`") # 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 `skip_workflow_execution_task`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'task_name' in params: path_params['taskName'] = params['task_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}/executions/{executionName}/skip/{taskName}', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 workflow_execution_task_logs(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Gets the logs of a workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.workflow_execution_task_logs(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: str If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.workflow_execution_task_logs_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.workflow_execution_task_logs_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 return data def workflow_execution_task_logs_with_http_info(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Gets the logs of a workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.workflow_execution_task_logs_with_http_info(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: str If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_name', 'project_name', 'task_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 workflow_execution_task_logs" % 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 `workflow_execution_task_logs`") # 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 `workflow_execution_task_logs`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `workflow_execution_task_logs`") # 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 `workflow_execution_task_logs`") # noqa: E501 # verify the required parameter 'task_name' is set if ('task_name' not in params or params['task_name'] is None): raise ValueError("Missing the required parameter `task_name` when calling `workflow_execution_task_logs`") # 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 `workflow_execution_task_logs`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'task_name' in params: path_params['taskName'] = params['task_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}/executions/{executionName}/logs/{taskName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='str', # 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)
- WorkflowExecutionPublicApiControllerApi
- 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_execution(
self, body, authorization, datapool_name, project_name, workflow_name, **kwargs)
Create workflow execution. # 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_execution(body, authorization, datapool_name, project_name, workflow_name, async_req=True) result = thread.get()
:param async_req bool :param WorkflowExecution body: execution (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: WorkflowExecution If the method is called asynchronously, returns the request thread.
def create_workflow_execution(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Create workflow execution. # 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_execution(body, authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param WorkflowExecution body: execution (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: WorkflowExecution 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_execution_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.create_workflow_execution_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 return data
def create_workflow_execution_with_http_info(
self, body, authorization, datapool_name, project_name, workflow_name, **kwargs)
Create workflow execution. # 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_execution_with_http_info(body, authorization, datapool_name, project_name, workflow_name, async_req=True) result = thread.get()
:param async_req bool :param WorkflowExecution body: execution (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: WorkflowExecution If the method is called asynchronously, returns the request thread.
def create_workflow_execution_with_http_info(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """Create workflow execution. # 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_execution_with_http_info(body, authorization, datapool_name, project_name, workflow_name, async_req=True) >>> result = thread.get() :param async_req bool :param WorkflowExecution body: execution (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: WorkflowExecution 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 create_workflow_execution" % 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_execution`") # 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_execution`") # 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_execution`") # 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_execution`") # 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 `create_workflow_execution`") # 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}/executions', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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_execution(
self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs)
Delete workflow execution. # 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_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def delete_workflow_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Delete workflow execution. # 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_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution 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_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.delete_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data
def delete_workflow_execution_with_http_info(
self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs)
Delete workflow execution. # 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_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def delete_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Delete workflow execution. # 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_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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_execution" % 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_execution`") # 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_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `delete_workflow_execution`") # 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_execution`") # 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_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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_execution(
self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs)
Get workflow execution. # 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_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def get_workflow_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Get workflow execution. # 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_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution 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_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.get_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data
def get_workflow_execution_with_http_info(
self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs)
Get workflow execution. # 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_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def get_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Get workflow execution. # 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_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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_execution" % 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_execution`") # 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_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `get_workflow_execution`") # 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_execution`") # 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_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 kill_workflow_execution(
self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs)
Kills all running workflow execution tasks. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.kill_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def kill_workflow_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Kills all running workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.kill_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.kill_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.kill_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data
def kill_workflow_execution_task(
self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs)
Kills a running workflow execution task. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.kill_workflow_execution_task(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def kill_workflow_execution_task(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Kills a running workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.kill_workflow_execution_task(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.kill_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.kill_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 return data
def kill_workflow_execution_task_with_http_info(
self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs)
Kills a running workflow execution task. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.kill_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def kill_workflow_execution_task_with_http_info(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Kills a running workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.kill_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_name', 'project_name', 'task_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 kill_workflow_execution_task" % 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 `kill_workflow_execution_task`") # 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 `kill_workflow_execution_task`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `kill_workflow_execution_task`") # 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 `kill_workflow_execution_task`") # noqa: E501 # verify the required parameter 'task_name' is set if ('task_name' not in params or params['task_name'] is None): raise ValueError("Missing the required parameter `task_name` when calling `kill_workflow_execution_task`") # 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 `kill_workflow_execution_task`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'task_name' in params: path_params['taskName'] = params['task_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}/executions/{executionName}/kill/{taskName}', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 kill_workflow_execution_with_http_info(
self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs)
Kills all running workflow execution tasks. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.kill_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def kill_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Kills all running workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.kill_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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 kill_workflow_execution" % 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 `kill_workflow_execution`") # 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 `kill_workflow_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `kill_workflow_execution`") # 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 `kill_workflow_execution`") # 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 `kill_workflow_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}/kill', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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_workflow_executions_for_datapool(
self, authorization, datapool_name, **kwargs)
List workflow executions 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_workflow_executions_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[WorkflowExecution] If the method is called asynchronously, returns the request thread.
def list_workflow_executions_for_datapool(self, authorization, datapool_name, **kwargs): # noqa: E501 """List workflow executions 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_workflow_executions_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[WorkflowExecution] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflow_executions_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 else: (data) = self.list_workflow_executions_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 return data
def list_workflow_executions_for_datapool_with_http_info(
self, authorization, datapool_name, **kwargs)
List workflow executions 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_workflow_executions_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[WorkflowExecution] If the method is called asynchronously, returns the request thread.
def list_workflow_executions_for_datapool_with_http_info(self, authorization, datapool_name, **kwargs): # noqa: E501 """List workflow executions 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_workflow_executions_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[WorkflowExecution] 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_workflow_executions_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_workflow_executions_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_workflow_executions_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}/executions', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[WorkflowExecution]', # 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_workflow_executions_for_project(
self, authorization, datapool_name, project_name, **kwargs)
List workflow executions 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_workflow_executions_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[WorkflowExecution] If the method is called asynchronously, returns the request thread.
def list_workflow_executions_for_project(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """List workflow executions 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_workflow_executions_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[WorkflowExecution] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflow_executions_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.list_workflow_executions_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data
def list_workflow_executions_for_project_with_http_info(
self, authorization, datapool_name, project_name, **kwargs)
List workflow executions 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_workflow_executions_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[WorkflowExecution] If the method is called asynchronously, returns the request thread.
def list_workflow_executions_for_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """List workflow executions 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_workflow_executions_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[WorkflowExecution] 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_workflow_executions_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_workflow_executions_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_workflow_executions_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_workflow_executions_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}/executions', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[WorkflowExecution]', # 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_workflow_executions_for_workflow(
self, authorization, datapool_name, project_name, workflow_name, **kwargs)
List workflow executions for 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.list_workflow_executions_for_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: list[WorkflowExecution] If the method is called asynchronously, returns the request thread.
def list_workflow_executions_for_workflow(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """List workflow executions for 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.list_workflow_executions_for_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: list[WorkflowExecution] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflow_executions_for_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.list_workflow_executions_for_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs) # noqa: E501 return data
def list_workflow_executions_for_workflow_schedule(
self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)
List workflow executions for workflow schedule. # 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_workflow_executions_for_workflow_schedule(authorization, datapool_name, project_name, schedule_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 schedule_name: scheduleName (required) :param str workflow_name: workflowName (required) :return: list[WorkflowExecution] If the method is called asynchronously, returns the request thread.
def list_workflow_executions_for_workflow_schedule(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs): # noqa: E501 """List workflow executions for workflow schedule. # 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_workflow_executions_for_workflow_schedule(authorization, datapool_name, project_name, schedule_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 schedule_name: scheduleName (required) :param str workflow_name: workflowName (required) :return: list[WorkflowExecution] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.list_workflow_executions_for_workflow_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.list_workflow_executions_for_workflow_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs) # noqa: E501 return data
def list_workflow_executions_for_workflow_schedule_with_http_info(
self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)
List workflow executions for workflow schedule. # 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_workflow_executions_for_workflow_schedule_with_http_info(authorization, datapool_name, project_name, schedule_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 schedule_name: scheduleName (required) :param str workflow_name: workflowName (required) :return: list[WorkflowExecution] If the method is called asynchronously, returns the request thread.
def list_workflow_executions_for_workflow_schedule_with_http_info(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs): # noqa: E501 """List workflow executions for workflow schedule. # 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_workflow_executions_for_workflow_schedule_with_http_info(authorization, datapool_name, project_name, schedule_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 schedule_name: scheduleName (required) :param str workflow_name: workflowName (required) :return: list[WorkflowExecution] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name', 'schedule_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 list_workflow_executions_for_workflow_schedule" % 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_workflow_executions_for_workflow_schedule`") # 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_workflow_executions_for_workflow_schedule`") # 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_workflow_executions_for_workflow_schedule`") # noqa: E501 # verify the required parameter 'schedule_name' is set if ('schedule_name' not in params or params['schedule_name'] is None): raise ValueError("Missing the required parameter `schedule_name` when calling `list_workflow_executions_for_workflow_schedule`") # 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 `list_workflow_executions_for_workflow_schedule`") # 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 'schedule_name' in params: path_params['scheduleName'] = params['schedule_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}/schedules/{scheduleName}/executions', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[WorkflowExecution]', # 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_workflow_executions_for_workflow_with_http_info(
self, authorization, datapool_name, project_name, workflow_name, **kwargs)
List workflow executions for 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.list_workflow_executions_for_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: list[WorkflowExecution] If the method is called asynchronously, returns the request thread.
def list_workflow_executions_for_workflow_with_http_info(self, authorization, datapool_name, project_name, workflow_name, **kwargs): # noqa: E501 """List workflow executions for 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.list_workflow_executions_for_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: list[WorkflowExecution] 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 list_workflow_executions_for_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 `list_workflow_executions_for_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 `list_workflow_executions_for_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 `list_workflow_executions_for_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 `list_workflow_executions_for_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}/executions', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[WorkflowExecution]', # 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 pause_workflow_execution(
self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs)
Pauses a running workflow execution. A paused workflow execution can be resumed. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.pause_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def pause_workflow_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Pauses a running workflow execution. A paused workflow execution can be resumed. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.pause_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.pause_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.pause_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data
def pause_workflow_execution_with_http_info(
self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs)
Pauses a running workflow execution. A paused workflow execution can be resumed. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.pause_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def pause_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Pauses a running workflow execution. A paused workflow execution can be resumed. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.pause_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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 pause_workflow_execution" % 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 `pause_workflow_execution`") # 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 `pause_workflow_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `pause_workflow_execution`") # 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 `pause_workflow_execution`") # 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 `pause_workflow_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}/pause', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 resume_workflow_execution(
self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs)
Resumes a paused workflow execution. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.resume_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def resume_workflow_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Resumes a paused workflow execution. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.resume_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.resume_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.resume_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data
def resume_workflow_execution_with_http_info(
self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs)
Resumes a paused workflow execution. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.resume_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def resume_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Resumes a paused workflow execution. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.resume_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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 resume_workflow_execution" % 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 `resume_workflow_execution`") # 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 `resume_workflow_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `resume_workflow_execution`") # 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 `resume_workflow_execution`") # 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 `resume_workflow_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}/resume', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 retry_workflow_execution(
self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs)
Retry all failed workflow execution tasks. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.retry_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def retry_workflow_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Retry all failed workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.retry_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.retry_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.retry_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data
def retry_workflow_execution_task(
self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs)
Retry a failed workflow execution task. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.retry_workflow_execution_task(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def retry_workflow_execution_task(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Retry a failed workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.retry_workflow_execution_task(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.retry_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.retry_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 return data
def retry_workflow_execution_task_with_http_info(
self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs)
Retry a failed workflow execution task. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.retry_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def retry_workflow_execution_task_with_http_info(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Retry a failed workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.retry_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_name', 'project_name', 'task_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 retry_workflow_execution_task" % 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 `retry_workflow_execution_task`") # 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 `retry_workflow_execution_task`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `retry_workflow_execution_task`") # 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 `retry_workflow_execution_task`") # noqa: E501 # verify the required parameter 'task_name' is set if ('task_name' not in params or params['task_name'] is None): raise ValueError("Missing the required parameter `task_name` when calling `retry_workflow_execution_task`") # 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 `retry_workflow_execution_task`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'task_name' in params: path_params['taskName'] = params['task_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}/executions/{executionName}/retry/{taskName}', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 retry_workflow_execution_with_http_info(
self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs)
Retry all failed workflow execution tasks. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.retry_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def retry_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Retry all failed workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.retry_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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 retry_workflow_execution" % 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 `retry_workflow_execution`") # 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 `retry_workflow_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `retry_workflow_execution`") # 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 `retry_workflow_execution`") # 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 `retry_workflow_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}/retry', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 skip_workflow_execution(
self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs)
Skip all failed workflow execution tasks. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.skip_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def skip_workflow_execution(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Skip all failed workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.skip_workflow_execution(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.skip_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.skip_workflow_execution_with_http_info(authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs) # noqa: E501 return data
def skip_workflow_execution_task(
self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs)
Skip a failed workflow execution task. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.skip_workflow_execution_task(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def skip_workflow_execution_task(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Skip a failed workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.skip_workflow_execution_task(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.skip_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.skip_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 return data
def skip_workflow_execution_task_with_http_info(
self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs)
Skip a failed workflow execution task. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.skip_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def skip_workflow_execution_task_with_http_info(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Skip a failed workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.skip_workflow_execution_task_with_http_info(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_name', 'project_name', 'task_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 skip_workflow_execution_task" % 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 `skip_workflow_execution_task`") # 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 `skip_workflow_execution_task`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `skip_workflow_execution_task`") # 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 `skip_workflow_execution_task`") # noqa: E501 # verify the required parameter 'task_name' is set if ('task_name' not in params or params['task_name'] is None): raise ValueError("Missing the required parameter `task_name` when calling `skip_workflow_execution_task`") # 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 `skip_workflow_execution_task`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'task_name' in params: path_params['taskName'] = params['task_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}/executions/{executionName}/skip/{taskName}', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 skip_workflow_execution_with_http_info(
self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs)
Skip all failed workflow execution tasks. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.skip_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread.
def skip_workflow_execution_with_http_info(self, authorization, datapool_name, execution_name, project_name, workflow_name, **kwargs): # noqa: E501 """Skip all failed workflow execution tasks. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.skip_workflow_execution_with_http_info(authorization, datapool_name, execution_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str workflow_name: workflowName (required) :return: WorkflowExecution If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_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 skip_workflow_execution" % 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 `skip_workflow_execution`") # 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 `skip_workflow_execution`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `skip_workflow_execution`") # 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 `skip_workflow_execution`") # 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 `skip_workflow_execution`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_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}/executions/{executionName}/skip', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkflowExecution', # 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 workflow_execution_task_logs(
self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs)
Gets the logs of a workflow execution task. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.workflow_execution_task_logs(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: str If the method is called asynchronously, returns the request thread.
def workflow_execution_task_logs(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Gets the logs of a workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.workflow_execution_task_logs(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: str If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.workflow_execution_task_logs_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 else: (data) = self.workflow_execution_task_logs_with_http_info(authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs) # noqa: E501 return data
def workflow_execution_task_logs_with_http_info(
self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs)
Gets the logs of a workflow execution task. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.workflow_execution_task_logs_with_http_info(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: str If the method is called asynchronously, returns the request thread.
def workflow_execution_task_logs_with_http_info(self, authorization, datapool_name, execution_name, project_name, task_name, workflow_name, **kwargs): # noqa: E501 """Gets the logs of a workflow execution task. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.workflow_execution_task_logs_with_http_info(authorization, datapool_name, execution_name, project_name, task_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 execution_name: executionName (required) :param str project_name: projectName (required) :param str task_name: taskName (required) :param str workflow_name: workflowName (required) :return: str If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'execution_name', 'project_name', 'task_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 workflow_execution_task_logs" % 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 `workflow_execution_task_logs`") # 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 `workflow_execution_task_logs`") # noqa: E501 # verify the required parameter 'execution_name' is set if ('execution_name' not in params or params['execution_name'] is None): raise ValueError("Missing the required parameter `execution_name` when calling `workflow_execution_task_logs`") # 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 `workflow_execution_task_logs`") # noqa: E501 # verify the required parameter 'task_name' is set if ('task_name' not in params or params['task_name'] is None): raise ValueError("Missing the required parameter `task_name` when calling `workflow_execution_task_logs`") # 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 `workflow_execution_task_logs`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'execution_name' in params: path_params['executionName'] = params['execution_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 if 'task_name' in params: path_params['taskName'] = params['task_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}/executions/{executionName}/logs/{taskName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='str', # 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