Top

lentiq.api.workflow_schedule_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 WorkflowSchedulePublicApiControllerApi(object):
    """
        Ref: 
    """

    def __init__(self, api_client=None):
        if api_client is None:
            api_client = ApiClient()
        self.api_client = api_client

    def create_workflow_schedule(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs):  # noqa: E501
        """Create 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.create_workflow_schedule(body, authorization, datapool_name, project_name, workflow_name, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param WorkflowSchedule body: schedule (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: WorkflowSchedule
                 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_schedule_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs)  # noqa: E501
        else:
            (data) = self.create_workflow_schedule_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs)  # noqa: E501
            return data

    def create_workflow_schedule_with_http_info(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs):  # noqa: E501
        """Create 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.create_workflow_schedule_with_http_info(body, authorization, datapool_name, project_name, workflow_name, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param WorkflowSchedule body: schedule (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: WorkflowSchedule
                 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_schedule" % 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_schedule`")  # 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_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 `create_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 `create_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 `create_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 '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}/schedules', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='WorkflowSchedule',  # 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_schedule(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
        """Delete 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.delete_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: WorkflowSchedule
                 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_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
        else:
            (data) = self.delete_workflow_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
            return data

    def delete_workflow_schedule_with_http_info(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
        """Delete 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.delete_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: WorkflowSchedule
                 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 delete_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 `delete_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 `delete_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 `delete_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 `delete_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 `delete_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}', 'DELETE',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='WorkflowSchedule',  # 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_schedule(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
        """Get 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.get_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: WorkflowSchedule
                 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_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_workflow_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
            return data

    def get_workflow_schedule_with_http_info(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
        """Get 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.get_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: WorkflowSchedule
                 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 get_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 `get_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 `get_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 `get_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 `get_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 `get_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}', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='WorkflowSchedule',  # 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_schedules_for_datapool(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """List workflow schedules 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_schedules_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[WorkflowSchedule]
                 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_schedules_for_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.list_workflow_schedules_for_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def list_workflow_schedules_for_datapool_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """List workflow schedules 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_schedules_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[WorkflowSchedule]
                 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_schedules_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_schedules_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_schedules_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}/schedules', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='list[WorkflowSchedule]',  # 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_schedules_for_project(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
        """List workflow schedules 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_schedules_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[WorkflowSchedule]
                 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_schedules_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
        else:
            (data) = self.list_workflow_schedules_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
            return data

    def list_workflow_schedules_for_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
        """List workflow schedules 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_schedules_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[WorkflowSchedule]
                 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_schedules_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_schedules_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_schedules_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_schedules_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}/schedules', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='list[WorkflowSchedule]',  # 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_schedules_for_workflow(self, authorization, datapool_name, project_name, workflow_name, **kwargs):  # noqa: E501
        """List workflow schedules 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_schedules_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[WorkflowSchedule]
                 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_schedules_for_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs)  # noqa: E501
        else:
            (data) = self.list_workflow_schedules_for_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs)  # noqa: E501
            return data

    def list_workflow_schedules_for_workflow_with_http_info(self, authorization, datapool_name, project_name, workflow_name, **kwargs):  # noqa: E501
        """List workflow schedules 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_schedules_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[WorkflowSchedule]
                 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_schedules_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_schedules_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_schedules_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_schedules_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_schedules_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}/schedules', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='list[WorkflowSchedule]',  # noqa: E501
            auth_settings=auth_settings,
            async_req=params.get('async_req'),
            _return_http_data_only=params.get('_return_http_data_only'),
            _preload_content=params.get('_preload_content', True),
            _request_timeout=params.get('_request_timeout'),
            collection_formats=collection_formats)

    def update_workflow_schedule(self, body, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
        """Update 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.update_workflow_schedule(body, authorization, datapool_name, project_name, schedule_name, workflow_name, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param WorkflowSchedule body: schedule (required)
        :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: WorkflowSchedule
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.update_workflow_schedule_with_http_info(body, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
        else:
            (data) = self.update_workflow_schedule_with_http_info(body, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
            return data

    def update_workflow_schedule_with_http_info(self, body, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
        """Update 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.update_workflow_schedule_with_http_info(body, authorization, datapool_name, project_name, schedule_name, workflow_name, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param WorkflowSchedule body: schedule (required)
        :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: WorkflowSchedule
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', '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 update_workflow_schedule" % key
                )
            params[key] = val
        del params['kwargs']
        # verify the required parameter 'body' is set
        if ('body' not in params or
                params['body'] is None):
            raise ValueError("Missing the required parameter `body` when calling `update_workflow_schedule`")  # noqa: E501
        # verify the required parameter 'authorization' is set
        if ('authorization' not in params or
                params['authorization'] is None):
            raise ValueError("Missing the required parameter `authorization` when calling `update_workflow_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 `update_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 `update_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 `update_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 `update_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
        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}/schedules/{scheduleName}', 'PUT',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='WorkflowSchedule',  # 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 WorkflowSchedulePublicApiControllerApi

Ref:

class WorkflowSchedulePublicApiControllerApi(object):
    """
        Ref: 
    """

    def __init__(self, api_client=None):
        if api_client is None:
            api_client = ApiClient()
        self.api_client = api_client

    def create_workflow_schedule(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs):  # noqa: E501
        """Create 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.create_workflow_schedule(body, authorization, datapool_name, project_name, workflow_name, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param WorkflowSchedule body: schedule (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: WorkflowSchedule
                 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_schedule_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs)  # noqa: E501
        else:
            (data) = self.create_workflow_schedule_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs)  # noqa: E501
            return data

    def create_workflow_schedule_with_http_info(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs):  # noqa: E501
        """Create 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.create_workflow_schedule_with_http_info(body, authorization, datapool_name, project_name, workflow_name, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param WorkflowSchedule body: schedule (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: WorkflowSchedule
                 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_schedule" % 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_schedule`")  # 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_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 `create_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 `create_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 `create_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 '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}/schedules', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='WorkflowSchedule',  # 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_schedule(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
        """Delete 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.delete_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: WorkflowSchedule
                 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_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
        else:
            (data) = self.delete_workflow_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
            return data

    def delete_workflow_schedule_with_http_info(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
        """Delete 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.delete_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: WorkflowSchedule
                 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 delete_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 `delete_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 `delete_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 `delete_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 `delete_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 `delete_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}', 'DELETE',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='WorkflowSchedule',  # 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_schedule(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
        """Get 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.get_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: WorkflowSchedule
                 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_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_workflow_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
            return data

    def get_workflow_schedule_with_http_info(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
        """Get 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.get_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: WorkflowSchedule
                 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 get_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 `get_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 `get_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 `get_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 `get_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 `get_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}', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='WorkflowSchedule',  # 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_schedules_for_datapool(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """List workflow schedules 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_schedules_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[WorkflowSchedule]
                 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_schedules_for_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.list_workflow_schedules_for_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def list_workflow_schedules_for_datapool_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """List workflow schedules 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_schedules_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[WorkflowSchedule]
                 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_schedules_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_schedules_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_schedules_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}/schedules', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='list[WorkflowSchedule]',  # 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_schedules_for_project(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
        """List workflow schedules 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_schedules_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[WorkflowSchedule]
                 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_schedules_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
        else:
            (data) = self.list_workflow_schedules_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
            return data

    def list_workflow_schedules_for_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
        """List workflow schedules 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_schedules_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[WorkflowSchedule]
                 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_schedules_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_schedules_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_schedules_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_schedules_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}/schedules', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='list[WorkflowSchedule]',  # 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_schedules_for_workflow(self, authorization, datapool_name, project_name, workflow_name, **kwargs):  # noqa: E501
        """List workflow schedules 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_schedules_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[WorkflowSchedule]
                 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_schedules_for_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs)  # noqa: E501
        else:
            (data) = self.list_workflow_schedules_for_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs)  # noqa: E501
            return data

    def list_workflow_schedules_for_workflow_with_http_info(self, authorization, datapool_name, project_name, workflow_name, **kwargs):  # noqa: E501
        """List workflow schedules 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_schedules_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[WorkflowSchedule]
                 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_schedules_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_schedules_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_schedules_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_schedules_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_schedules_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}/schedules', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='list[WorkflowSchedule]',  # noqa: E501
            auth_settings=auth_settings,
            async_req=params.get('async_req'),
            _return_http_data_only=params.get('_return_http_data_only'),
            _preload_content=params.get('_preload_content', True),
            _request_timeout=params.get('_request_timeout'),
            collection_formats=collection_formats)

    def update_workflow_schedule(self, body, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
        """Update 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.update_workflow_schedule(body, authorization, datapool_name, project_name, schedule_name, workflow_name, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param WorkflowSchedule body: schedule (required)
        :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: WorkflowSchedule
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.update_workflow_schedule_with_http_info(body, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
        else:
            (data) = self.update_workflow_schedule_with_http_info(body, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
            return data

    def update_workflow_schedule_with_http_info(self, body, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
        """Update 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.update_workflow_schedule_with_http_info(body, authorization, datapool_name, project_name, schedule_name, workflow_name, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param WorkflowSchedule body: schedule (required)
        :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: WorkflowSchedule
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', '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 update_workflow_schedule" % key
                )
            params[key] = val
        del params['kwargs']
        # verify the required parameter 'body' is set
        if ('body' not in params or
                params['body'] is None):
            raise ValueError("Missing the required parameter `body` when calling `update_workflow_schedule`")  # noqa: E501
        # verify the required parameter 'authorization' is set
        if ('authorization' not in params or
                params['authorization'] is None):
            raise ValueError("Missing the required parameter `authorization` when calling `update_workflow_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 `update_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 `update_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 `update_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 `update_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
        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}/schedules/{scheduleName}', 'PUT',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='WorkflowSchedule',  # 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)

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_schedule(

self, body, authorization, datapool_name, project_name, workflow_name, **kwargs)

Create 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.create_workflow_schedule(body, authorization, datapool_name, project_name, workflow_name, async_req=True) result = thread.get()

:param async_req bool :param WorkflowSchedule body: schedule (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: WorkflowSchedule If the method is called asynchronously, returns the request thread.

def create_workflow_schedule(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs):  # noqa: E501
    """Create 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.create_workflow_schedule(body, authorization, datapool_name, project_name, workflow_name, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param WorkflowSchedule body: schedule (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: WorkflowSchedule
             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_schedule_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs)  # noqa: E501
    else:
        (data) = self.create_workflow_schedule_with_http_info(body, authorization, datapool_name, project_name, workflow_name, **kwargs)  # noqa: E501
        return data

def create_workflow_schedule_with_http_info(

self, body, authorization, datapool_name, project_name, workflow_name, **kwargs)

Create 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.create_workflow_schedule_with_http_info(body, authorization, datapool_name, project_name, workflow_name, async_req=True) result = thread.get()

:param async_req bool :param WorkflowSchedule body: schedule (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: WorkflowSchedule If the method is called asynchronously, returns the request thread.

def create_workflow_schedule_with_http_info(self, body, authorization, datapool_name, project_name, workflow_name, **kwargs):  # noqa: E501
    """Create 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.create_workflow_schedule_with_http_info(body, authorization, datapool_name, project_name, workflow_name, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param WorkflowSchedule body: schedule (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: WorkflowSchedule
             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_schedule" % 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_schedule`")  # 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_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 `create_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 `create_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 `create_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 '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}/schedules', 'POST',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='WorkflowSchedule',  # 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_schedule(

self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)

Delete 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.delete_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: WorkflowSchedule If the method is called asynchronously, returns the request thread.

def delete_workflow_schedule(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
    """Delete 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.delete_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: WorkflowSchedule
             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_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
    else:
        (data) = self.delete_workflow_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
        return data

def delete_workflow_schedule_with_http_info(

self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)

Delete 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.delete_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: WorkflowSchedule If the method is called asynchronously, returns the request thread.

def delete_workflow_schedule_with_http_info(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
    """Delete 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.delete_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: WorkflowSchedule
             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 delete_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 `delete_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 `delete_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 `delete_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 `delete_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 `delete_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}', 'DELETE',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='WorkflowSchedule',  # 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_schedule(

self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)

Get 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.get_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: WorkflowSchedule If the method is called asynchronously, returns the request thread.

def get_workflow_schedule(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
    """Get 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.get_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: WorkflowSchedule
             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_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
    else:
        (data) = self.get_workflow_schedule_with_http_info(authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
        return data

def get_workflow_schedule_with_http_info(

self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)

Get 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.get_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: WorkflowSchedule If the method is called asynchronously, returns the request thread.

def get_workflow_schedule_with_http_info(self, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
    """Get 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.get_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: WorkflowSchedule
             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 get_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 `get_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 `get_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 `get_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 `get_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 `get_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}', 'GET',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='WorkflowSchedule',  # 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_schedules_for_datapool(

self, authorization, datapool_name, **kwargs)

List workflow schedules 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_schedules_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[WorkflowSchedule] If the method is called asynchronously, returns the request thread.

def list_workflow_schedules_for_datapool(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """List workflow schedules 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_schedules_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[WorkflowSchedule]
             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_schedules_for_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
    else:
        (data) = self.list_workflow_schedules_for_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        return data

def list_workflow_schedules_for_datapool_with_http_info(

self, authorization, datapool_name, **kwargs)

List workflow schedules 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_schedules_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[WorkflowSchedule] If the method is called asynchronously, returns the request thread.

def list_workflow_schedules_for_datapool_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """List workflow schedules 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_schedules_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[WorkflowSchedule]
             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_schedules_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_schedules_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_schedules_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}/schedules', 'GET',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='list[WorkflowSchedule]',  # 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_schedules_for_project(

self, authorization, datapool_name, project_name, **kwargs)

List workflow schedules 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_schedules_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[WorkflowSchedule] If the method is called asynchronously, returns the request thread.

def list_workflow_schedules_for_project(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
    """List workflow schedules 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_schedules_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[WorkflowSchedule]
             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_schedules_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
    else:
        (data) = self.list_workflow_schedules_for_project_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
        return data

def list_workflow_schedules_for_project_with_http_info(

self, authorization, datapool_name, project_name, **kwargs)

List workflow schedules 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_schedules_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[WorkflowSchedule] If the method is called asynchronously, returns the request thread.

def list_workflow_schedules_for_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
    """List workflow schedules 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_schedules_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[WorkflowSchedule]
             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_schedules_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_schedules_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_schedules_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_schedules_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}/schedules', 'GET',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='list[WorkflowSchedule]',  # 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_schedules_for_workflow(

self, authorization, datapool_name, project_name, workflow_name, **kwargs)

List workflow schedules 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_schedules_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[WorkflowSchedule] If the method is called asynchronously, returns the request thread.

def list_workflow_schedules_for_workflow(self, authorization, datapool_name, project_name, workflow_name, **kwargs):  # noqa: E501
    """List workflow schedules 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_schedules_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[WorkflowSchedule]
             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_schedules_for_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs)  # noqa: E501
    else:
        (data) = self.list_workflow_schedules_for_workflow_with_http_info(authorization, datapool_name, project_name, workflow_name, **kwargs)  # noqa: E501
        return data

def list_workflow_schedules_for_workflow_with_http_info(

self, authorization, datapool_name, project_name, workflow_name, **kwargs)

List workflow schedules 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_schedules_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[WorkflowSchedule] If the method is called asynchronously, returns the request thread.

def list_workflow_schedules_for_workflow_with_http_info(self, authorization, datapool_name, project_name, workflow_name, **kwargs):  # noqa: E501
    """List workflow schedules 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_schedules_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[WorkflowSchedule]
             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_schedules_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_schedules_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_schedules_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_schedules_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_schedules_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}/schedules', 'GET',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='list[WorkflowSchedule]',  # noqa: E501
        auth_settings=auth_settings,
        async_req=params.get('async_req'),
        _return_http_data_only=params.get('_return_http_data_only'),
        _preload_content=params.get('_preload_content', True),
        _request_timeout=params.get('_request_timeout'),
        collection_formats=collection_formats)

def update_workflow_schedule(

self, body, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)

Update 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.update_workflow_schedule(body, authorization, datapool_name, project_name, schedule_name, workflow_name, async_req=True) result = thread.get()

:param async_req bool :param WorkflowSchedule body: schedule (required) :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: WorkflowSchedule If the method is called asynchronously, returns the request thread.

def update_workflow_schedule(self, body, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
    """Update 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.update_workflow_schedule(body, authorization, datapool_name, project_name, schedule_name, workflow_name, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param WorkflowSchedule body: schedule (required)
    :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: WorkflowSchedule
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.update_workflow_schedule_with_http_info(body, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
    else:
        (data) = self.update_workflow_schedule_with_http_info(body, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)  # noqa: E501
        return data

def update_workflow_schedule_with_http_info(

self, body, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs)

Update 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.update_workflow_schedule_with_http_info(body, authorization, datapool_name, project_name, schedule_name, workflow_name, async_req=True) result = thread.get()

:param async_req bool :param WorkflowSchedule body: schedule (required) :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: WorkflowSchedule If the method is called asynchronously, returns the request thread.

def update_workflow_schedule_with_http_info(self, body, authorization, datapool_name, project_name, schedule_name, workflow_name, **kwargs):  # noqa: E501
    """Update 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.update_workflow_schedule_with_http_info(body, authorization, datapool_name, project_name, schedule_name, workflow_name, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param WorkflowSchedule body: schedule (required)
    :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: WorkflowSchedule
             If the method is called asynchronously,
             returns the request thread.
    """
    all_params = ['body', '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 update_workflow_schedule" % key
            )
        params[key] = val
    del params['kwargs']
    # verify the required parameter 'body' is set
    if ('body' not in params or
            params['body'] is None):
        raise ValueError("Missing the required parameter `body` when calling `update_workflow_schedule`")  # noqa: E501
    # verify the required parameter 'authorization' is set
    if ('authorization' not in params or
            params['authorization'] is None):
        raise ValueError("Missing the required parameter `authorization` when calling `update_workflow_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 `update_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 `update_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 `update_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 `update_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
    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}/schedules/{scheduleName}', 'PUT',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='WorkflowSchedule',  # 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