Top

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

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

    def create_datapool_delete_job(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool delete job.  # 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_datapool_delete_job(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolDeleteJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolDeleteJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.create_datapool_delete_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.create_datapool_delete_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
            return data

    def create_datapool_delete_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool delete job.  # 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_datapool_delete_job_with_http_info(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolDeleteJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolDeleteJob
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', 'authorization']  # 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_datapool_delete_job" % 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_datapool_delete_job`")  # 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_datapool_delete_job`")  # noqa: E501

        collection_formats = {}

        path_params = {}

        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/jobs/datapoolDeleteJob', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolDeleteJob',  # 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 create_datapool_edit_i_ps_job(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool edit IPs job.  # 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_datapool_edit_i_ps_job(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolEditIPsJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolEditIPsJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.create_datapool_edit_i_ps_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.create_datapool_edit_i_ps_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
            return data

    def create_datapool_edit_i_ps_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool edit IPs job.  # 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_datapool_edit_i_ps_job_with_http_info(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolEditIPsJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolEditIPsJob
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', 'authorization']  # 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_datapool_edit_i_ps_job" % 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_datapool_edit_i_ps_job`")  # 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_datapool_edit_i_ps_job`")  # noqa: E501

        collection_formats = {}

        path_params = {}

        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/jobs/datapoolEditIPsJob', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolEditIPsJob',  # 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 create_datapool_onboarding_job(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool onboarding job.  # 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_datapool_onboarding_job(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolOnboardingJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.create_datapool_onboarding_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.create_datapool_onboarding_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
            return data

    def create_datapool_onboarding_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool onboarding job.  # 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_datapool_onboarding_job_with_http_info(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolOnboardingJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', 'authorization']  # 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_datapool_onboarding_job" % 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_datapool_onboarding_job`")  # 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_datapool_onboarding_job`")  # noqa: E501

        collection_formats = {}

        path_params = {}

        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/jobs/datapoolOnboardingJob', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolOnboardingJob',  # 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 create_datapool_quick_startup_job(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool quick startup job, using a datapool onboarding job.  # 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_datapool_quick_startup_job(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolOnboardingJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.create_datapool_quick_startup_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.create_datapool_quick_startup_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
            return data

    def create_datapool_quick_startup_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool quick startup job, using a datapool onboarding job.  # 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_datapool_quick_startup_job_with_http_info(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolOnboardingJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', 'authorization']  # 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_datapool_quick_startup_job" % 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_datapool_quick_startup_job`")  # 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_datapool_quick_startup_job`")  # noqa: E501

        collection_formats = {}

        path_params = {}

        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/jobs/datapoolQuickStartupJob', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolOnboardingJob',  # 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 create_datapool_startup_job(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool startup job, allocating an existing starter datapool to the client or creating a new one.  # 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_datapool_startup_job(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolOnboardingJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.create_datapool_startup_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.create_datapool_startup_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
            return data

    def create_datapool_startup_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool startup job, allocating an existing starter datapool to the client or creating a new one.  # 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_datapool_startup_job_with_http_info(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolOnboardingJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', 'authorization']  # 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_datapool_startup_job" % 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_datapool_startup_job`")  # 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_datapool_startup_job`")  # noqa: E501

        collection_formats = {}

        path_params = {}

        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/jobs/datapoolStartupJob', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolOnboardingJob',  # 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 create_project_delete_job(self, body, authorization, **kwargs):  # noqa: E501
        """Create project delete job.  # 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_project_delete_job(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param ProjectDeleteJob body: job (required)
        :param str authorization: Authorization (required)
        :return: ProjectDeleteJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.create_project_delete_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.create_project_delete_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
            return data

    def create_project_delete_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
        """Create project delete job.  # 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_project_delete_job_with_http_info(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param ProjectDeleteJob body: job (required)
        :param str authorization: Authorization (required)
        :return: ProjectDeleteJob
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', 'authorization']  # 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_project_delete_job" % 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_project_delete_job`")  # 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_project_delete_job`")  # noqa: E501

        collection_formats = {}

        path_params = {}

        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/jobs/projectDeleteJob', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='ProjectDeleteJob',  # 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 create_project_edit_i_ps_job(self, body, authorization, **kwargs):  # noqa: E501
        """Create project edit IPs job.  # 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_project_edit_i_ps_job(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param ProjectEditIPsJob body: job (required)
        :param str authorization: Authorization (required)
        :return: ProjectEditIPsJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.create_project_edit_i_ps_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.create_project_edit_i_ps_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
            return data

    def create_project_edit_i_ps_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
        """Create project edit IPs job.  # 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_project_edit_i_ps_job_with_http_info(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param ProjectEditIPsJob body: job (required)
        :param str authorization: Authorization (required)
        :return: ProjectEditIPsJob
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', 'authorization']  # 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_project_edit_i_ps_job" % 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_project_edit_i_ps_job`")  # 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_project_edit_i_ps_job`")  # noqa: E501

        collection_formats = {}

        path_params = {}

        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/jobs/projectEditIPsJob', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='ProjectEditIPsJob',  # 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 create_project_onboarding_job(self, body, authorization, datapool_name, **kwargs):  # noqa: E501
        """Create project onboarding job.  # 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_project_onboarding_job(body, authorization, datapool_name, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param ProjectOnboardingJob body: job (required)
        :param str authorization: Authorization (required)
        :param str datapool_name: datapoolName (required)
        :return: ProjectOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.create_project_onboarding_job_with_http_info(body, authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.create_project_onboarding_job_with_http_info(body, authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def create_project_onboarding_job_with_http_info(self, body, authorization, datapool_name, **kwargs):  # noqa: E501
        """Create project onboarding job.  # 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_project_onboarding_job_with_http_info(body, authorization, datapool_name, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param ProjectOnboardingJob body: job (required)
        :param str authorization: Authorization (required)
        :param str datapool_name: datapoolName (required)
        :return: ProjectOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', '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 create_project_onboarding_job" % 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_project_onboarding_job`")  # 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_project_onboarding_job`")  # 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_project_onboarding_job`")  # 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
        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/jobs/projectOnboardingJob/{datapoolName}', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='ProjectOnboardingJob',  # 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_all_project_onboarding_jobs_for_datapool(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get all project onboarding jobs 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.get_all_project_onboarding_jobs_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[ProjectOnboardingJob]
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.get_all_project_onboarding_jobs_for_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_all_project_onboarding_jobs_for_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def get_all_project_onboarding_jobs_for_datapool_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get all project onboarding jobs 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.get_all_project_onboarding_jobs_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[ProjectOnboardingJob]
                 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 get_all_project_onboarding_jobs_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 `get_all_project_onboarding_jobs_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 `get_all_project_onboarding_jobs_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/jobs/projectOnboardingJob/{datapoolName}/', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='list[ProjectOnboardingJob]',  # 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_datapool_delete_job(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool delete job.  # 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_datapool_delete_job(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: DatapoolDeleteJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.get_datapool_delete_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_datapool_delete_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def get_datapool_delete_job_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool delete job.  # 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_datapool_delete_job_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: DatapoolDeleteJob
                 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 get_datapool_delete_job" % 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_datapool_delete_job`")  # 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_datapool_delete_job`")  # 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/jobs/datapoolDeleteJob/{datapoolName}', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolDeleteJob',  # 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_datapool_edit_i_ps_job(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool edit IPs job.  # 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_datapool_edit_i_ps_job(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: DatapoolEditIPsJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.get_datapool_edit_i_ps_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_datapool_edit_i_ps_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def get_datapool_edit_i_ps_job_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool edit IPs job.  # 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_datapool_edit_i_ps_job_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: DatapoolEditIPsJob
                 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 get_datapool_edit_i_ps_job" % 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_datapool_edit_i_ps_job`")  # 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_datapool_edit_i_ps_job`")  # 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/jobs/datapoolEditIPsJob/{datapoolName}', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolEditIPsJob',  # 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_datapool_onboarding_job(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool onboarding job.  # 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_datapool_onboarding_job(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: DatapoolOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.get_datapool_onboarding_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_datapool_onboarding_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def get_datapool_onboarding_job_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool onboarding job.  # 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_datapool_onboarding_job_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: DatapoolOnboardingJob
                 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 get_datapool_onboarding_job" % 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_datapool_onboarding_job`")  # 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_datapool_onboarding_job`")  # 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/jobs/datapoolOnboardingJob/{datapoolName}', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolOnboardingJob',  # 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_project_delete_job(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
        """Get project delete job.  # 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_project_delete_job(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: ProjectDeleteJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.get_project_delete_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_project_delete_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
            return data

    def get_project_delete_job_with_http_info(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
        """Get project delete job.  # 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_project_delete_job_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: ProjectDeleteJob
                 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 get_project_delete_job" % 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_project_delete_job`")  # 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_project_delete_job`")  # 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_project_delete_job`")  # 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/jobs/projectDeleteJob/{datapoolName}/{projectName}', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='ProjectDeleteJob',  # 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_project_edit_i_ps_job(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
        """Get project edit IPs job.  # 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_project_edit_i_ps_job(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: ProjectEditIPsJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.get_project_edit_i_ps_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_project_edit_i_ps_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
            return data

    def get_project_edit_i_ps_job_with_http_info(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
        """Get project edit IPs job.  # 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_project_edit_i_ps_job_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: ProjectEditIPsJob
                 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 get_project_edit_i_ps_job" % 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_project_edit_i_ps_job`")  # 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_project_edit_i_ps_job`")  # 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_project_edit_i_ps_job`")  # 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/jobs/projectEditIPsJob/{datapoolName}/{projectName}', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='ProjectEditIPsJob',  # 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_project_onboarding_job(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
        """Get project onboarding job.  # 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_project_onboarding_job(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: ProjectOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.get_project_onboarding_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_project_onboarding_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
            return data

    def get_project_onboarding_job_with_http_info(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
        """Get project onboarding job.  # 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_project_onboarding_job_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: ProjectOnboardingJob
                 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 get_project_onboarding_job" % 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_project_onboarding_job`")  # 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_project_onboarding_job`")  # 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_project_onboarding_job`")  # 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/jobs/projectOnboardingJob/{datapoolName}/{projectName}', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='ProjectOnboardingJob',  # 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 JobsPublicApiControllerApi

Ref:

class JobsPublicApiControllerApi(object):
    """
        Ref: 
    """

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

    def create_datapool_delete_job(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool delete job.  # 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_datapool_delete_job(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolDeleteJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolDeleteJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.create_datapool_delete_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.create_datapool_delete_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
            return data

    def create_datapool_delete_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool delete job.  # 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_datapool_delete_job_with_http_info(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolDeleteJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolDeleteJob
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', 'authorization']  # 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_datapool_delete_job" % 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_datapool_delete_job`")  # 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_datapool_delete_job`")  # noqa: E501

        collection_formats = {}

        path_params = {}

        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/jobs/datapoolDeleteJob', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolDeleteJob',  # 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 create_datapool_edit_i_ps_job(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool edit IPs job.  # 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_datapool_edit_i_ps_job(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolEditIPsJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolEditIPsJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.create_datapool_edit_i_ps_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.create_datapool_edit_i_ps_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
            return data

    def create_datapool_edit_i_ps_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool edit IPs job.  # 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_datapool_edit_i_ps_job_with_http_info(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolEditIPsJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolEditIPsJob
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', 'authorization']  # 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_datapool_edit_i_ps_job" % 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_datapool_edit_i_ps_job`")  # 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_datapool_edit_i_ps_job`")  # noqa: E501

        collection_formats = {}

        path_params = {}

        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/jobs/datapoolEditIPsJob', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolEditIPsJob',  # 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 create_datapool_onboarding_job(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool onboarding job.  # 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_datapool_onboarding_job(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolOnboardingJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.create_datapool_onboarding_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.create_datapool_onboarding_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
            return data

    def create_datapool_onboarding_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool onboarding job.  # 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_datapool_onboarding_job_with_http_info(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolOnboardingJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', 'authorization']  # 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_datapool_onboarding_job" % 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_datapool_onboarding_job`")  # 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_datapool_onboarding_job`")  # noqa: E501

        collection_formats = {}

        path_params = {}

        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/jobs/datapoolOnboardingJob', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolOnboardingJob',  # 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 create_datapool_quick_startup_job(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool quick startup job, using a datapool onboarding job.  # 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_datapool_quick_startup_job(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolOnboardingJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.create_datapool_quick_startup_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.create_datapool_quick_startup_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
            return data

    def create_datapool_quick_startup_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool quick startup job, using a datapool onboarding job.  # 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_datapool_quick_startup_job_with_http_info(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolOnboardingJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', 'authorization']  # 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_datapool_quick_startup_job" % 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_datapool_quick_startup_job`")  # 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_datapool_quick_startup_job`")  # noqa: E501

        collection_formats = {}

        path_params = {}

        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/jobs/datapoolQuickStartupJob', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolOnboardingJob',  # 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 create_datapool_startup_job(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool startup job, allocating an existing starter datapool to the client or creating a new one.  # 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_datapool_startup_job(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolOnboardingJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.create_datapool_startup_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.create_datapool_startup_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
            return data

    def create_datapool_startup_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
        """Create datapool startup job, allocating an existing starter datapool to the client or creating a new one.  # 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_datapool_startup_job_with_http_info(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param DatapoolOnboardingJob body: job (required)
        :param str authorization: Authorization (required)
        :return: DatapoolOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', 'authorization']  # 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_datapool_startup_job" % 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_datapool_startup_job`")  # 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_datapool_startup_job`")  # noqa: E501

        collection_formats = {}

        path_params = {}

        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/jobs/datapoolStartupJob', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolOnboardingJob',  # 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 create_project_delete_job(self, body, authorization, **kwargs):  # noqa: E501
        """Create project delete job.  # 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_project_delete_job(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param ProjectDeleteJob body: job (required)
        :param str authorization: Authorization (required)
        :return: ProjectDeleteJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.create_project_delete_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.create_project_delete_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
            return data

    def create_project_delete_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
        """Create project delete job.  # 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_project_delete_job_with_http_info(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param ProjectDeleteJob body: job (required)
        :param str authorization: Authorization (required)
        :return: ProjectDeleteJob
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', 'authorization']  # 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_project_delete_job" % 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_project_delete_job`")  # 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_project_delete_job`")  # noqa: E501

        collection_formats = {}

        path_params = {}

        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/jobs/projectDeleteJob', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='ProjectDeleteJob',  # 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 create_project_edit_i_ps_job(self, body, authorization, **kwargs):  # noqa: E501
        """Create project edit IPs job.  # 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_project_edit_i_ps_job(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param ProjectEditIPsJob body: job (required)
        :param str authorization: Authorization (required)
        :return: ProjectEditIPsJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.create_project_edit_i_ps_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.create_project_edit_i_ps_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
            return data

    def create_project_edit_i_ps_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
        """Create project edit IPs job.  # 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_project_edit_i_ps_job_with_http_info(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param ProjectEditIPsJob body: job (required)
        :param str authorization: Authorization (required)
        :return: ProjectEditIPsJob
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', 'authorization']  # 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_project_edit_i_ps_job" % 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_project_edit_i_ps_job`")  # 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_project_edit_i_ps_job`")  # noqa: E501

        collection_formats = {}

        path_params = {}

        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/jobs/projectEditIPsJob', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='ProjectEditIPsJob',  # 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 create_project_onboarding_job(self, body, authorization, datapool_name, **kwargs):  # noqa: E501
        """Create project onboarding job.  # 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_project_onboarding_job(body, authorization, datapool_name, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param ProjectOnboardingJob body: job (required)
        :param str authorization: Authorization (required)
        :param str datapool_name: datapoolName (required)
        :return: ProjectOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.create_project_onboarding_job_with_http_info(body, authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.create_project_onboarding_job_with_http_info(body, authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def create_project_onboarding_job_with_http_info(self, body, authorization, datapool_name, **kwargs):  # noqa: E501
        """Create project onboarding job.  # 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_project_onboarding_job_with_http_info(body, authorization, datapool_name, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param ProjectOnboardingJob body: job (required)
        :param str authorization: Authorization (required)
        :param str datapool_name: datapoolName (required)
        :return: ProjectOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """

        all_params = ['body', '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 create_project_onboarding_job" % 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_project_onboarding_job`")  # 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_project_onboarding_job`")  # 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_project_onboarding_job`")  # 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
        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/jobs/projectOnboardingJob/{datapoolName}', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='ProjectOnboardingJob',  # 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_all_project_onboarding_jobs_for_datapool(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get all project onboarding jobs 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.get_all_project_onboarding_jobs_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[ProjectOnboardingJob]
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.get_all_project_onboarding_jobs_for_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_all_project_onboarding_jobs_for_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def get_all_project_onboarding_jobs_for_datapool_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get all project onboarding jobs 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.get_all_project_onboarding_jobs_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[ProjectOnboardingJob]
                 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 get_all_project_onboarding_jobs_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 `get_all_project_onboarding_jobs_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 `get_all_project_onboarding_jobs_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/jobs/projectOnboardingJob/{datapoolName}/', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='list[ProjectOnboardingJob]',  # 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_datapool_delete_job(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool delete job.  # 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_datapool_delete_job(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: DatapoolDeleteJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.get_datapool_delete_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_datapool_delete_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def get_datapool_delete_job_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool delete job.  # 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_datapool_delete_job_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: DatapoolDeleteJob
                 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 get_datapool_delete_job" % 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_datapool_delete_job`")  # 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_datapool_delete_job`")  # 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/jobs/datapoolDeleteJob/{datapoolName}', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolDeleteJob',  # 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_datapool_edit_i_ps_job(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool edit IPs job.  # 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_datapool_edit_i_ps_job(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: DatapoolEditIPsJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.get_datapool_edit_i_ps_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_datapool_edit_i_ps_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def get_datapool_edit_i_ps_job_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool edit IPs job.  # 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_datapool_edit_i_ps_job_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: DatapoolEditIPsJob
                 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 get_datapool_edit_i_ps_job" % 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_datapool_edit_i_ps_job`")  # 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_datapool_edit_i_ps_job`")  # 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/jobs/datapoolEditIPsJob/{datapoolName}', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolEditIPsJob',  # 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_datapool_onboarding_job(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool onboarding job.  # 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_datapool_onboarding_job(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: DatapoolOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.get_datapool_onboarding_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_datapool_onboarding_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def get_datapool_onboarding_job_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool onboarding job.  # 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_datapool_onboarding_job_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: DatapoolOnboardingJob
                 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 get_datapool_onboarding_job" % 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_datapool_onboarding_job`")  # 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_datapool_onboarding_job`")  # 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/jobs/datapoolOnboardingJob/{datapoolName}', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolOnboardingJob',  # 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_project_delete_job(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
        """Get project delete job.  # 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_project_delete_job(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: ProjectDeleteJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.get_project_delete_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_project_delete_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
            return data

    def get_project_delete_job_with_http_info(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
        """Get project delete job.  # 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_project_delete_job_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: ProjectDeleteJob
                 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 get_project_delete_job" % 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_project_delete_job`")  # 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_project_delete_job`")  # 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_project_delete_job`")  # 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/jobs/projectDeleteJob/{datapoolName}/{projectName}', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='ProjectDeleteJob',  # 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_project_edit_i_ps_job(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
        """Get project edit IPs job.  # 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_project_edit_i_ps_job(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: ProjectEditIPsJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.get_project_edit_i_ps_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_project_edit_i_ps_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
            return data

    def get_project_edit_i_ps_job_with_http_info(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
        """Get project edit IPs job.  # 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_project_edit_i_ps_job_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: ProjectEditIPsJob
                 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 get_project_edit_i_ps_job" % 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_project_edit_i_ps_job`")  # 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_project_edit_i_ps_job`")  # 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_project_edit_i_ps_job`")  # 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/jobs/projectEditIPsJob/{datapoolName}/{projectName}', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='ProjectEditIPsJob',  # 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_project_onboarding_job(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
        """Get project onboarding job.  # 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_project_onboarding_job(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: ProjectOnboardingJob
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.get_project_onboarding_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_project_onboarding_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
            return data

    def get_project_onboarding_job_with_http_info(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
        """Get project onboarding job.  # 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_project_onboarding_job_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: ProjectOnboardingJob
                 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 get_project_onboarding_job" % 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_project_onboarding_job`")  # 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_project_onboarding_job`")  # 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_project_onboarding_job`")  # 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/jobs/projectOnboardingJob/{datapoolName}/{projectName}', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='ProjectOnboardingJob',  # 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_datapool_delete_job(

self, body, authorization, **kwargs)

Create datapool delete job. # 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_datapool_delete_job(body, authorization, async_req=True) result = thread.get()

:param async_req bool :param DatapoolDeleteJob body: job (required) :param str authorization: Authorization (required) :return: DatapoolDeleteJob If the method is called asynchronously, returns the request thread.

def create_datapool_delete_job(self, body, authorization, **kwargs):  # noqa: E501
    """Create datapool delete job.  # 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_datapool_delete_job(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param DatapoolDeleteJob body: job (required)
    :param str authorization: Authorization (required)
    :return: DatapoolDeleteJob
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.create_datapool_delete_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
    else:
        (data) = self.create_datapool_delete_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        return data

def create_datapool_delete_job_with_http_info(

self, body, authorization, **kwargs)

Create datapool delete job. # 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_datapool_delete_job_with_http_info(body, authorization, async_req=True) result = thread.get()

:param async_req bool :param DatapoolDeleteJob body: job (required) :param str authorization: Authorization (required) :return: DatapoolDeleteJob If the method is called asynchronously, returns the request thread.

def create_datapool_delete_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
    """Create datapool delete job.  # 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_datapool_delete_job_with_http_info(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param DatapoolDeleteJob body: job (required)
    :param str authorization: Authorization (required)
    :return: DatapoolDeleteJob
             If the method is called asynchronously,
             returns the request thread.
    """
    all_params = ['body', 'authorization']  # 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_datapool_delete_job" % 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_datapool_delete_job`")  # 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_datapool_delete_job`")  # noqa: E501
    collection_formats = {}
    path_params = {}
    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/jobs/datapoolDeleteJob', 'POST',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='DatapoolDeleteJob',  # 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 create_datapool_edit_i_ps_job(

self, body, authorization, **kwargs)

Create datapool edit IPs job. # 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_datapool_edit_i_ps_job(body, authorization, async_req=True) result = thread.get()

:param async_req bool :param DatapoolEditIPsJob body: job (required) :param str authorization: Authorization (required) :return: DatapoolEditIPsJob If the method is called asynchronously, returns the request thread.

def create_datapool_edit_i_ps_job(self, body, authorization, **kwargs):  # noqa: E501
    """Create datapool edit IPs job.  # 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_datapool_edit_i_ps_job(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param DatapoolEditIPsJob body: job (required)
    :param str authorization: Authorization (required)
    :return: DatapoolEditIPsJob
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.create_datapool_edit_i_ps_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
    else:
        (data) = self.create_datapool_edit_i_ps_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        return data

def create_datapool_edit_i_ps_job_with_http_info(

self, body, authorization, **kwargs)

Create datapool edit IPs job. # 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_datapool_edit_i_ps_job_with_http_info(body, authorization, async_req=True) result = thread.get()

:param async_req bool :param DatapoolEditIPsJob body: job (required) :param str authorization: Authorization (required) :return: DatapoolEditIPsJob If the method is called asynchronously, returns the request thread.

def create_datapool_edit_i_ps_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
    """Create datapool edit IPs job.  # 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_datapool_edit_i_ps_job_with_http_info(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param DatapoolEditIPsJob body: job (required)
    :param str authorization: Authorization (required)
    :return: DatapoolEditIPsJob
             If the method is called asynchronously,
             returns the request thread.
    """
    all_params = ['body', 'authorization']  # 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_datapool_edit_i_ps_job" % 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_datapool_edit_i_ps_job`")  # 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_datapool_edit_i_ps_job`")  # noqa: E501
    collection_formats = {}
    path_params = {}
    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/jobs/datapoolEditIPsJob', 'POST',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='DatapoolEditIPsJob',  # 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 create_datapool_onboarding_job(

self, body, authorization, **kwargs)

Create datapool onboarding job. # 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_datapool_onboarding_job(body, authorization, async_req=True) result = thread.get()

:param async_req bool :param DatapoolOnboardingJob body: job (required) :param str authorization: Authorization (required) :return: DatapoolOnboardingJob If the method is called asynchronously, returns the request thread.

def create_datapool_onboarding_job(self, body, authorization, **kwargs):  # noqa: E501
    """Create datapool onboarding job.  # 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_datapool_onboarding_job(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param DatapoolOnboardingJob body: job (required)
    :param str authorization: Authorization (required)
    :return: DatapoolOnboardingJob
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.create_datapool_onboarding_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
    else:
        (data) = self.create_datapool_onboarding_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        return data

def create_datapool_onboarding_job_with_http_info(

self, body, authorization, **kwargs)

Create datapool onboarding job. # 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_datapool_onboarding_job_with_http_info(body, authorization, async_req=True) result = thread.get()

:param async_req bool :param DatapoolOnboardingJob body: job (required) :param str authorization: Authorization (required) :return: DatapoolOnboardingJob If the method is called asynchronously, returns the request thread.

def create_datapool_onboarding_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
    """Create datapool onboarding job.  # 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_datapool_onboarding_job_with_http_info(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param DatapoolOnboardingJob body: job (required)
    :param str authorization: Authorization (required)
    :return: DatapoolOnboardingJob
             If the method is called asynchronously,
             returns the request thread.
    """
    all_params = ['body', 'authorization']  # 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_datapool_onboarding_job" % 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_datapool_onboarding_job`")  # 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_datapool_onboarding_job`")  # noqa: E501
    collection_formats = {}
    path_params = {}
    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/jobs/datapoolOnboardingJob', 'POST',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='DatapoolOnboardingJob',  # 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 create_datapool_quick_startup_job(

self, body, authorization, **kwargs)

Create datapool quick startup job, using a datapool onboarding job. # 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_datapool_quick_startup_job(body, authorization, async_req=True) result = thread.get()

:param async_req bool :param DatapoolOnboardingJob body: job (required) :param str authorization: Authorization (required) :return: DatapoolOnboardingJob If the method is called asynchronously, returns the request thread.

def create_datapool_quick_startup_job(self, body, authorization, **kwargs):  # noqa: E501
    """Create datapool quick startup job, using a datapool onboarding job.  # 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_datapool_quick_startup_job(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param DatapoolOnboardingJob body: job (required)
    :param str authorization: Authorization (required)
    :return: DatapoolOnboardingJob
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.create_datapool_quick_startup_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
    else:
        (data) = self.create_datapool_quick_startup_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        return data

def create_datapool_quick_startup_job_with_http_info(

self, body, authorization, **kwargs)

Create datapool quick startup job, using a datapool onboarding job. # 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_datapool_quick_startup_job_with_http_info(body, authorization, async_req=True) result = thread.get()

:param async_req bool :param DatapoolOnboardingJob body: job (required) :param str authorization: Authorization (required) :return: DatapoolOnboardingJob If the method is called asynchronously, returns the request thread.

def create_datapool_quick_startup_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
    """Create datapool quick startup job, using a datapool onboarding job.  # 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_datapool_quick_startup_job_with_http_info(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param DatapoolOnboardingJob body: job (required)
    :param str authorization: Authorization (required)
    :return: DatapoolOnboardingJob
             If the method is called asynchronously,
             returns the request thread.
    """
    all_params = ['body', 'authorization']  # 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_datapool_quick_startup_job" % 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_datapool_quick_startup_job`")  # 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_datapool_quick_startup_job`")  # noqa: E501
    collection_formats = {}
    path_params = {}
    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/jobs/datapoolQuickStartupJob', 'POST',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='DatapoolOnboardingJob',  # 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 create_datapool_startup_job(

self, body, authorization, **kwargs)

Create datapool startup job, allocating an existing starter datapool to the client or creating a new one. # 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_datapool_startup_job(body, authorization, async_req=True) result = thread.get()

:param async_req bool :param DatapoolOnboardingJob body: job (required) :param str authorization: Authorization (required) :return: DatapoolOnboardingJob If the method is called asynchronously, returns the request thread.

def create_datapool_startup_job(self, body, authorization, **kwargs):  # noqa: E501
    """Create datapool startup job, allocating an existing starter datapool to the client or creating a new one.  # 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_datapool_startup_job(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param DatapoolOnboardingJob body: job (required)
    :param str authorization: Authorization (required)
    :return: DatapoolOnboardingJob
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.create_datapool_startup_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
    else:
        (data) = self.create_datapool_startup_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        return data

def create_datapool_startup_job_with_http_info(

self, body, authorization, **kwargs)

Create datapool startup job, allocating an existing starter datapool to the client or creating a new one. # 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_datapool_startup_job_with_http_info(body, authorization, async_req=True) result = thread.get()

:param async_req bool :param DatapoolOnboardingJob body: job (required) :param str authorization: Authorization (required) :return: DatapoolOnboardingJob If the method is called asynchronously, returns the request thread.

def create_datapool_startup_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
    """Create datapool startup job, allocating an existing starter datapool to the client or creating a new one.  # 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_datapool_startup_job_with_http_info(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param DatapoolOnboardingJob body: job (required)
    :param str authorization: Authorization (required)
    :return: DatapoolOnboardingJob
             If the method is called asynchronously,
             returns the request thread.
    """
    all_params = ['body', 'authorization']  # 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_datapool_startup_job" % 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_datapool_startup_job`")  # 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_datapool_startup_job`")  # noqa: E501
    collection_formats = {}
    path_params = {}
    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/jobs/datapoolStartupJob', 'POST',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='DatapoolOnboardingJob',  # 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 create_project_delete_job(

self, body, authorization, **kwargs)

Create project delete job. # 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_project_delete_job(body, authorization, async_req=True) result = thread.get()

:param async_req bool :param ProjectDeleteJob body: job (required) :param str authorization: Authorization (required) :return: ProjectDeleteJob If the method is called asynchronously, returns the request thread.

def create_project_delete_job(self, body, authorization, **kwargs):  # noqa: E501
    """Create project delete job.  # 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_project_delete_job(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param ProjectDeleteJob body: job (required)
    :param str authorization: Authorization (required)
    :return: ProjectDeleteJob
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.create_project_delete_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
    else:
        (data) = self.create_project_delete_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        return data

def create_project_delete_job_with_http_info(

self, body, authorization, **kwargs)

Create project delete job. # 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_project_delete_job_with_http_info(body, authorization, async_req=True) result = thread.get()

:param async_req bool :param ProjectDeleteJob body: job (required) :param str authorization: Authorization (required) :return: ProjectDeleteJob If the method is called asynchronously, returns the request thread.

def create_project_delete_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
    """Create project delete job.  # 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_project_delete_job_with_http_info(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param ProjectDeleteJob body: job (required)
    :param str authorization: Authorization (required)
    :return: ProjectDeleteJob
             If the method is called asynchronously,
             returns the request thread.
    """
    all_params = ['body', 'authorization']  # 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_project_delete_job" % 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_project_delete_job`")  # 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_project_delete_job`")  # noqa: E501
    collection_formats = {}
    path_params = {}
    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/jobs/projectDeleteJob', 'POST',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='ProjectDeleteJob',  # 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 create_project_edit_i_ps_job(

self, body, authorization, **kwargs)

Create project edit IPs job. # 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_project_edit_i_ps_job(body, authorization, async_req=True) result = thread.get()

:param async_req bool :param ProjectEditIPsJob body: job (required) :param str authorization: Authorization (required) :return: ProjectEditIPsJob If the method is called asynchronously, returns the request thread.

def create_project_edit_i_ps_job(self, body, authorization, **kwargs):  # noqa: E501
    """Create project edit IPs job.  # 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_project_edit_i_ps_job(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param ProjectEditIPsJob body: job (required)
    :param str authorization: Authorization (required)
    :return: ProjectEditIPsJob
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.create_project_edit_i_ps_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
    else:
        (data) = self.create_project_edit_i_ps_job_with_http_info(body, authorization, **kwargs)  # noqa: E501
        return data

def create_project_edit_i_ps_job_with_http_info(

self, body, authorization, **kwargs)

Create project edit IPs job. # 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_project_edit_i_ps_job_with_http_info(body, authorization, async_req=True) result = thread.get()

:param async_req bool :param ProjectEditIPsJob body: job (required) :param str authorization: Authorization (required) :return: ProjectEditIPsJob If the method is called asynchronously, returns the request thread.

def create_project_edit_i_ps_job_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
    """Create project edit IPs job.  # 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_project_edit_i_ps_job_with_http_info(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param ProjectEditIPsJob body: job (required)
    :param str authorization: Authorization (required)
    :return: ProjectEditIPsJob
             If the method is called asynchronously,
             returns the request thread.
    """
    all_params = ['body', 'authorization']  # 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_project_edit_i_ps_job" % 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_project_edit_i_ps_job`")  # 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_project_edit_i_ps_job`")  # noqa: E501
    collection_formats = {}
    path_params = {}
    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/jobs/projectEditIPsJob', 'POST',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='ProjectEditIPsJob',  # 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 create_project_onboarding_job(

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

Create project onboarding job. # 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_project_onboarding_job(body, authorization, datapool_name, async_req=True) result = thread.get()

:param async_req bool :param ProjectOnboardingJob body: job (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: ProjectOnboardingJob If the method is called asynchronously, returns the request thread.

def create_project_onboarding_job(self, body, authorization, datapool_name, **kwargs):  # noqa: E501
    """Create project onboarding job.  # 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_project_onboarding_job(body, authorization, datapool_name, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param ProjectOnboardingJob body: job (required)
    :param str authorization: Authorization (required)
    :param str datapool_name: datapoolName (required)
    :return: ProjectOnboardingJob
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.create_project_onboarding_job_with_http_info(body, authorization, datapool_name, **kwargs)  # noqa: E501
    else:
        (data) = self.create_project_onboarding_job_with_http_info(body, authorization, datapool_name, **kwargs)  # noqa: E501
        return data

def create_project_onboarding_job_with_http_info(

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

Create project onboarding job. # 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_project_onboarding_job_with_http_info(body, authorization, datapool_name, async_req=True) result = thread.get()

:param async_req bool :param ProjectOnboardingJob body: job (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: ProjectOnboardingJob If the method is called asynchronously, returns the request thread.

def create_project_onboarding_job_with_http_info(self, body, authorization, datapool_name, **kwargs):  # noqa: E501
    """Create project onboarding job.  # 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_project_onboarding_job_with_http_info(body, authorization, datapool_name, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param ProjectOnboardingJob body: job (required)
    :param str authorization: Authorization (required)
    :param str datapool_name: datapoolName (required)
    :return: ProjectOnboardingJob
             If the method is called asynchronously,
             returns the request thread.
    """
    all_params = ['body', '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 create_project_onboarding_job" % 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_project_onboarding_job`")  # 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_project_onboarding_job`")  # 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_project_onboarding_job`")  # 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
    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/jobs/projectOnboardingJob/{datapoolName}', 'POST',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='ProjectOnboardingJob',  # 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_all_project_onboarding_jobs_for_datapool(

self, authorization, datapool_name, **kwargs)

Get all project onboarding jobs 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.get_all_project_onboarding_jobs_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[ProjectOnboardingJob] If the method is called asynchronously, returns the request thread.

def get_all_project_onboarding_jobs_for_datapool(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """Get all project onboarding jobs 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.get_all_project_onboarding_jobs_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[ProjectOnboardingJob]
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.get_all_project_onboarding_jobs_for_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
    else:
        (data) = self.get_all_project_onboarding_jobs_for_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        return data

def get_all_project_onboarding_jobs_for_datapool_with_http_info(

self, authorization, datapool_name, **kwargs)

Get all project onboarding jobs 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.get_all_project_onboarding_jobs_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[ProjectOnboardingJob] If the method is called asynchronously, returns the request thread.

def get_all_project_onboarding_jobs_for_datapool_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """Get all project onboarding jobs 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.get_all_project_onboarding_jobs_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[ProjectOnboardingJob]
             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 get_all_project_onboarding_jobs_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 `get_all_project_onboarding_jobs_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 `get_all_project_onboarding_jobs_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/jobs/projectOnboardingJob/{datapoolName}/', 'GET',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='list[ProjectOnboardingJob]',  # 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_datapool_delete_job(

self, authorization, datapool_name, **kwargs)

Get datapool delete job. # 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_datapool_delete_job(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: DatapoolDeleteJob If the method is called asynchronously, returns the request thread.

def get_datapool_delete_job(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """Get datapool delete job.  # 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_datapool_delete_job(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: DatapoolDeleteJob
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.get_datapool_delete_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
    else:
        (data) = self.get_datapool_delete_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        return data

def get_datapool_delete_job_with_http_info(

self, authorization, datapool_name, **kwargs)

Get datapool delete job. # 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_datapool_delete_job_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: DatapoolDeleteJob If the method is called asynchronously, returns the request thread.

def get_datapool_delete_job_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """Get datapool delete job.  # 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_datapool_delete_job_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: DatapoolDeleteJob
             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 get_datapool_delete_job" % 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_datapool_delete_job`")  # 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_datapool_delete_job`")  # 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/jobs/datapoolDeleteJob/{datapoolName}', 'GET',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='DatapoolDeleteJob',  # 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_datapool_edit_i_ps_job(

self, authorization, datapool_name, **kwargs)

Get datapool edit IPs job. # 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_datapool_edit_i_ps_job(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: DatapoolEditIPsJob If the method is called asynchronously, returns the request thread.

def get_datapool_edit_i_ps_job(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """Get datapool edit IPs job.  # 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_datapool_edit_i_ps_job(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: DatapoolEditIPsJob
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.get_datapool_edit_i_ps_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
    else:
        (data) = self.get_datapool_edit_i_ps_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        return data

def get_datapool_edit_i_ps_job_with_http_info(

self, authorization, datapool_name, **kwargs)

Get datapool edit IPs job. # 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_datapool_edit_i_ps_job_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: DatapoolEditIPsJob If the method is called asynchronously, returns the request thread.

def get_datapool_edit_i_ps_job_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """Get datapool edit IPs job.  # 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_datapool_edit_i_ps_job_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: DatapoolEditIPsJob
             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 get_datapool_edit_i_ps_job" % 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_datapool_edit_i_ps_job`")  # 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_datapool_edit_i_ps_job`")  # 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/jobs/datapoolEditIPsJob/{datapoolName}', 'GET',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='DatapoolEditIPsJob',  # 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_datapool_onboarding_job(

self, authorization, datapool_name, **kwargs)

Get datapool onboarding job. # 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_datapool_onboarding_job(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: DatapoolOnboardingJob If the method is called asynchronously, returns the request thread.

def get_datapool_onboarding_job(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """Get datapool onboarding job.  # 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_datapool_onboarding_job(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: DatapoolOnboardingJob
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.get_datapool_onboarding_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
    else:
        (data) = self.get_datapool_onboarding_job_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        return data

def get_datapool_onboarding_job_with_http_info(

self, authorization, datapool_name, **kwargs)

Get datapool onboarding job. # 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_datapool_onboarding_job_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: DatapoolOnboardingJob If the method is called asynchronously, returns the request thread.

def get_datapool_onboarding_job_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """Get datapool onboarding job.  # 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_datapool_onboarding_job_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: DatapoolOnboardingJob
             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 get_datapool_onboarding_job" % 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_datapool_onboarding_job`")  # 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_datapool_onboarding_job`")  # 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/jobs/datapoolOnboardingJob/{datapoolName}', 'GET',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='DatapoolOnboardingJob',  # 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_project_delete_job(

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

Get project delete job. # 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_project_delete_job(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: ProjectDeleteJob If the method is called asynchronously, returns the request thread.

def get_project_delete_job(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
    """Get project delete job.  # 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_project_delete_job(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: ProjectDeleteJob
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.get_project_delete_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
    else:
        (data) = self.get_project_delete_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
        return data

def get_project_delete_job_with_http_info(

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

Get project delete job. # 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_project_delete_job_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: ProjectDeleteJob If the method is called asynchronously, returns the request thread.

def get_project_delete_job_with_http_info(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
    """Get project delete job.  # 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_project_delete_job_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: ProjectDeleteJob
             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 get_project_delete_job" % 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_project_delete_job`")  # 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_project_delete_job`")  # 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_project_delete_job`")  # 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/jobs/projectDeleteJob/{datapoolName}/{projectName}', 'GET',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='ProjectDeleteJob',  # 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_project_edit_i_ps_job(

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

Get project edit IPs job. # 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_project_edit_i_ps_job(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: ProjectEditIPsJob If the method is called asynchronously, returns the request thread.

def get_project_edit_i_ps_job(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
    """Get project edit IPs job.  # 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_project_edit_i_ps_job(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: ProjectEditIPsJob
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.get_project_edit_i_ps_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
    else:
        (data) = self.get_project_edit_i_ps_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
        return data

def get_project_edit_i_ps_job_with_http_info(

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

Get project edit IPs job. # 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_project_edit_i_ps_job_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: ProjectEditIPsJob If the method is called asynchronously, returns the request thread.

def get_project_edit_i_ps_job_with_http_info(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
    """Get project edit IPs job.  # 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_project_edit_i_ps_job_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: ProjectEditIPsJob
             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 get_project_edit_i_ps_job" % 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_project_edit_i_ps_job`")  # 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_project_edit_i_ps_job`")  # 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_project_edit_i_ps_job`")  # 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/jobs/projectEditIPsJob/{datapoolName}/{projectName}', 'GET',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='ProjectEditIPsJob',  # 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_project_onboarding_job(

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

Get project onboarding job. # 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_project_onboarding_job(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: ProjectOnboardingJob If the method is called asynchronously, returns the request thread.

def get_project_onboarding_job(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
    """Get project onboarding job.  # 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_project_onboarding_job(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: ProjectOnboardingJob
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.get_project_onboarding_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
    else:
        (data) = self.get_project_onboarding_job_with_http_info(authorization, datapool_name, project_name, **kwargs)  # noqa: E501
        return data

def get_project_onboarding_job_with_http_info(

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

Get project onboarding job. # 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_project_onboarding_job_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: ProjectOnboardingJob If the method is called asynchronously, returns the request thread.

def get_project_onboarding_job_with_http_info(self, authorization, datapool_name, project_name, **kwargs):  # noqa: E501
    """Get project onboarding job.  # 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_project_onboarding_job_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: ProjectOnboardingJob
             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 get_project_onboarding_job" % 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_project_onboarding_job`")  # 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_project_onboarding_job`")  # 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_project_onboarding_job`")  # 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/jobs/projectOnboardingJob/{datapoolName}/{projectName}', 'GET',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='ProjectOnboardingJob',  # 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