Top

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

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

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

        :param async_req bool
        :param Datapool body: datapool (required)
        :param str authorization: Authorization (required)
        :return: Datapool
                 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_with_http_info(body, authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.create_datapool_with_http_info(body, authorization, **kwargs)  # noqa: E501
            return data

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

        :param async_req bool
        :param Datapool body: datapool (required)
        :param str authorization: Authorization (required)
        :return: Datapool
                 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" % 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`")  # 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`")  # 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/datapools', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='Datapool',  # noqa: E501
            auth_settings=auth_settings,
            async_req=params.get('async_req'),
            _return_http_data_only=params.get('_return_http_data_only'),
            _preload_content=params.get('_preload_content', True),
            _request_timeout=params.get('_request_timeout'),
            collection_formats=collection_formats)

    def delete_datapool(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Delete 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.delete_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: Datapool
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.delete_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.delete_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def delete_datapool_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Delete 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.delete_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: Datapool
                 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 delete_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 `delete_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 `delete_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/datapools/{datapoolName}', 'DELETE',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='Datapool',  # noqa: E501
            auth_settings=auth_settings,
            async_req=params.get('async_req'),
            _return_http_data_only=params.get('_return_http_data_only'),
            _preload_content=params.get('_preload_content', True),
            _request_timeout=params.get('_request_timeout'),
            collection_formats=collection_formats)

    def delete_failed_validation_datapool(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Delete a creating datapool that failed with a validation error.  # noqa: E501

        This method makes a synchronous HTTP request by default. To make an
        asynchronous HTTP request, please pass async_req=True
        >>> thread = api.delete_failed_validation_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: None
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.delete_failed_validation_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.delete_failed_validation_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def delete_failed_validation_datapool_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Delete a creating datapool that failed with a validation error.  # noqa: E501

        This method makes a synchronous HTTP request by default. To make an
        asynchronous HTTP request, please pass async_req=True
        >>> thread = api.delete_failed_validation_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: None
                 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 delete_failed_validation_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 `delete_failed_validation_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 `delete_failed_validation_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
        # Authentication setting
        auth_settings = []  # noqa: E501

        return self.api_client.call_api(
            '/api/v1/datapools/deleteFailedValidationDatapool/{datapoolName}', 'DELETE',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type=None,  # 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_datapools_for_user(self, authorization, **kwargs):  # noqa: E501
        """Return all datapools a user has access to.  # 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_datapools_for_user(authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param str authorization: Authorization (required)
        :return: UserDatapools
                 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_datapools_for_user_with_http_info(authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.get_all_datapools_for_user_with_http_info(authorization, **kwargs)  # noqa: E501
            return data

    def get_all_datapools_for_user_with_http_info(self, authorization, **kwargs):  # noqa: E501
        """Return all datapools a user has access to.  # 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_datapools_for_user_with_http_info(authorization, async_req=True)
        >>> result = thread.get()

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

        all_params = ['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 get_all_datapools_for_user" % 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_datapools_for_user`")  # 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
        # 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/datapools', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='UserDatapools',  # 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(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool by datapool name.  # 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(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: Datapool
                 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_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def get_datapool_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool by datapool name.  # 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_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: Datapool
                 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" % 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`")  # 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`")  # 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/datapools/{datapoolName}', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='Datapool',  # 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_shared_bucket_information(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool shared bucket information by datapool name.  # 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_shared_bucket_information(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: DatapoolSharedBucketInformation
                 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_shared_bucket_information_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_datapool_shared_bucket_information_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def get_datapool_shared_bucket_information_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool shared bucket information by datapool name.  # 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_shared_bucket_information_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: DatapoolSharedBucketInformation
                 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_shared_bucket_information" % 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_shared_bucket_information`")  # 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_shared_bucket_information`")  # 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/datapools/{datapoolName}/sharedBucketInformation', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolSharedBucketInformation',  # 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_resources_for_configuration(self, body, authorization, **kwargs):  # noqa: E501
        """Get datapool resources for a given configuration.  # 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_resources_for_configuration(body, authorization, async_req=True)
        >>> result = thread.get()

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

    def get_resources_for_configuration_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
        """Get datapool resources for a given configuration.  # 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_resources_for_configuration_with_http_info(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param InfrastructureProviderConfiguration body: configuration (required)
        :param str authorization: Authorization (required)
        :return: DatapoolResources
                 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 get_resources_for_configuration" % 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 `get_resources_for_configuration`")  # 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 `get_resources_for_configuration`")  # 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/datapools/getResourcesForConfiguration', 'PUT',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolResources',  # noqa: E501
            auth_settings=auth_settings,
            async_req=params.get('async_req'),
            _return_http_data_only=params.get('_return_http_data_only'),
            _preload_content=params.get('_preload_content', True),
            _request_timeout=params.get('_request_timeout'),
            collection_formats=collection_formats)

    def update_datapool_infrastructure_provider_configuration(self, body, authorization, datapool_name, **kwargs):  # noqa: E501
        """Update the infrastructureProviderConfiguration for a 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.update_datapool_infrastructure_provider_configuration(body, authorization, datapool_name, async_req=True)
        >>> result = thread.get()

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

    def update_datapool_infrastructure_provider_configuration_with_http_info(self, body, authorization, datapool_name, **kwargs):  # noqa: E501
        """Update the infrastructureProviderConfiguration for a 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.update_datapool_infrastructure_provider_configuration_with_http_info(body, authorization, datapool_name, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param InfrastructureProviderConfiguration body: infrastructureProviderConfiguration (required)
        :param str authorization: Authorization (required)
        :param str datapool_name: datapoolName (required)
        :return: Datapool
                 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 update_datapool_infrastructure_provider_configuration" % key
                )
            params[key] = val
        del params['kwargs']
        # verify the required parameter 'body' is set
        if ('body' not in params or
                params['body'] is None):
            raise ValueError("Missing the required parameter `body` when calling `update_datapool_infrastructure_provider_configuration`")  # noqa: E501
        # verify the required parameter 'authorization' is set
        if ('authorization' not in params or
                params['authorization'] is None):
            raise ValueError("Missing the required parameter `authorization` when calling `update_datapool_infrastructure_provider_configuration`")  # noqa: E501
        # verify the required parameter 'datapool_name' is set
        if ('datapool_name' not in params or
                params['datapool_name'] is None):
            raise ValueError("Missing the required parameter `datapool_name` when calling `update_datapool_infrastructure_provider_configuration`")  # 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/datapools/{datapoolName}/infrastructureProviderConfiguration', 'PUT',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='Datapool',  # 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 DatapoolPublicApiControllerApi

Ref:

class DatapoolPublicApiControllerApi(object):
    """
        Ref: 
    """

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

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

        :param async_req bool
        :param Datapool body: datapool (required)
        :param str authorization: Authorization (required)
        :return: Datapool
                 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_with_http_info(body, authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.create_datapool_with_http_info(body, authorization, **kwargs)  # noqa: E501
            return data

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

        :param async_req bool
        :param Datapool body: datapool (required)
        :param str authorization: Authorization (required)
        :return: Datapool
                 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" % 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`")  # 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`")  # 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/datapools', 'POST',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='Datapool',  # noqa: E501
            auth_settings=auth_settings,
            async_req=params.get('async_req'),
            _return_http_data_only=params.get('_return_http_data_only'),
            _preload_content=params.get('_preload_content', True),
            _request_timeout=params.get('_request_timeout'),
            collection_formats=collection_formats)

    def delete_datapool(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Delete 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.delete_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: Datapool
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.delete_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.delete_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def delete_datapool_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Delete 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.delete_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: Datapool
                 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 delete_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 `delete_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 `delete_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/datapools/{datapoolName}', 'DELETE',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='Datapool',  # noqa: E501
            auth_settings=auth_settings,
            async_req=params.get('async_req'),
            _return_http_data_only=params.get('_return_http_data_only'),
            _preload_content=params.get('_preload_content', True),
            _request_timeout=params.get('_request_timeout'),
            collection_formats=collection_formats)

    def delete_failed_validation_datapool(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Delete a creating datapool that failed with a validation error.  # noqa: E501

        This method makes a synchronous HTTP request by default. To make an
        asynchronous HTTP request, please pass async_req=True
        >>> thread = api.delete_failed_validation_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: None
                 If the method is called asynchronously,
                 returns the request thread.
        """
        kwargs['_return_http_data_only'] = True
        if kwargs.get('async_req'):
            return self.delete_failed_validation_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.delete_failed_validation_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def delete_failed_validation_datapool_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Delete a creating datapool that failed with a validation error.  # noqa: E501

        This method makes a synchronous HTTP request by default. To make an
        asynchronous HTTP request, please pass async_req=True
        >>> thread = api.delete_failed_validation_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: None
                 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 delete_failed_validation_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 `delete_failed_validation_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 `delete_failed_validation_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
        # Authentication setting
        auth_settings = []  # noqa: E501

        return self.api_client.call_api(
            '/api/v1/datapools/deleteFailedValidationDatapool/{datapoolName}', 'DELETE',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type=None,  # 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_datapools_for_user(self, authorization, **kwargs):  # noqa: E501
        """Return all datapools a user has access to.  # 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_datapools_for_user(authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param str authorization: Authorization (required)
        :return: UserDatapools
                 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_datapools_for_user_with_http_info(authorization, **kwargs)  # noqa: E501
        else:
            (data) = self.get_all_datapools_for_user_with_http_info(authorization, **kwargs)  # noqa: E501
            return data

    def get_all_datapools_for_user_with_http_info(self, authorization, **kwargs):  # noqa: E501
        """Return all datapools a user has access to.  # 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_datapools_for_user_with_http_info(authorization, async_req=True)
        >>> result = thread.get()

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

        all_params = ['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 get_all_datapools_for_user" % 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_datapools_for_user`")  # 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
        # 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/datapools', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='UserDatapools',  # 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(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool by datapool name.  # 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(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: Datapool
                 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_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def get_datapool_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool by datapool name.  # 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_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: Datapool
                 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" % 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`")  # 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`")  # 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/datapools/{datapoolName}', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='Datapool',  # 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_shared_bucket_information(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool shared bucket information by datapool name.  # 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_shared_bucket_information(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: DatapoolSharedBucketInformation
                 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_shared_bucket_information_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        else:
            (data) = self.get_datapool_shared_bucket_information_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
            return data

    def get_datapool_shared_bucket_information_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
        """Get datapool shared bucket information by datapool name.  # 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_shared_bucket_information_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: DatapoolSharedBucketInformation
                 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_shared_bucket_information" % 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_shared_bucket_information`")  # 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_shared_bucket_information`")  # 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/datapools/{datapoolName}/sharedBucketInformation', 'GET',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolSharedBucketInformation',  # 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_resources_for_configuration(self, body, authorization, **kwargs):  # noqa: E501
        """Get datapool resources for a given configuration.  # 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_resources_for_configuration(body, authorization, async_req=True)
        >>> result = thread.get()

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

    def get_resources_for_configuration_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
        """Get datapool resources for a given configuration.  # 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_resources_for_configuration_with_http_info(body, authorization, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param InfrastructureProviderConfiguration body: configuration (required)
        :param str authorization: Authorization (required)
        :return: DatapoolResources
                 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 get_resources_for_configuration" % 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 `get_resources_for_configuration`")  # 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 `get_resources_for_configuration`")  # 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/datapools/getResourcesForConfiguration', 'PUT',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='DatapoolResources',  # noqa: E501
            auth_settings=auth_settings,
            async_req=params.get('async_req'),
            _return_http_data_only=params.get('_return_http_data_only'),
            _preload_content=params.get('_preload_content', True),
            _request_timeout=params.get('_request_timeout'),
            collection_formats=collection_formats)

    def update_datapool_infrastructure_provider_configuration(self, body, authorization, datapool_name, **kwargs):  # noqa: E501
        """Update the infrastructureProviderConfiguration for a 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.update_datapool_infrastructure_provider_configuration(body, authorization, datapool_name, async_req=True)
        >>> result = thread.get()

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

    def update_datapool_infrastructure_provider_configuration_with_http_info(self, body, authorization, datapool_name, **kwargs):  # noqa: E501
        """Update the infrastructureProviderConfiguration for a 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.update_datapool_infrastructure_provider_configuration_with_http_info(body, authorization, datapool_name, async_req=True)
        >>> result = thread.get()

        :param async_req bool
        :param InfrastructureProviderConfiguration body: infrastructureProviderConfiguration (required)
        :param str authorization: Authorization (required)
        :param str datapool_name: datapoolName (required)
        :return: Datapool
                 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 update_datapool_infrastructure_provider_configuration" % key
                )
            params[key] = val
        del params['kwargs']
        # verify the required parameter 'body' is set
        if ('body' not in params or
                params['body'] is None):
            raise ValueError("Missing the required parameter `body` when calling `update_datapool_infrastructure_provider_configuration`")  # noqa: E501
        # verify the required parameter 'authorization' is set
        if ('authorization' not in params or
                params['authorization'] is None):
            raise ValueError("Missing the required parameter `authorization` when calling `update_datapool_infrastructure_provider_configuration`")  # noqa: E501
        # verify the required parameter 'datapool_name' is set
        if ('datapool_name' not in params or
                params['datapool_name'] is None):
            raise ValueError("Missing the required parameter `datapool_name` when calling `update_datapool_infrastructure_provider_configuration`")  # 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/datapools/{datapoolName}/infrastructureProviderConfiguration', 'PUT',
            path_params,
            query_params,
            header_params,
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='Datapool',  # 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(

self, body, authorization, **kwargs)

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

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

def create_datapool(self, body, authorization, **kwargs):  # noqa: E501
    """Create 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.create_datapool(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param Datapool body: datapool (required)
    :param str authorization: Authorization (required)
    :return: Datapool
             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_with_http_info(body, authorization, **kwargs)  # noqa: E501
    else:
        (data) = self.create_datapool_with_http_info(body, authorization, **kwargs)  # noqa: E501
        return data

def create_datapool_with_http_info(

self, body, authorization, **kwargs)

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

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

def create_datapool_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
    """Create 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.create_datapool_with_http_info(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param Datapool body: datapool (required)
    :param str authorization: Authorization (required)
    :return: Datapool
             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" % 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`")  # 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`")  # 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/datapools', 'POST',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='Datapool',  # noqa: E501
        auth_settings=auth_settings,
        async_req=params.get('async_req'),
        _return_http_data_only=params.get('_return_http_data_only'),
        _preload_content=params.get('_preload_content', True),
        _request_timeout=params.get('_request_timeout'),
        collection_formats=collection_formats)

def delete_datapool(

self, authorization, datapool_name, **kwargs)

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

def delete_datapool(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """Delete 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.delete_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: Datapool
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.delete_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
    else:
        (data) = self.delete_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        return data

def delete_datapool_with_http_info(

self, authorization, datapool_name, **kwargs)

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

def delete_datapool_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """Delete 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.delete_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: Datapool
             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 delete_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 `delete_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 `delete_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/datapools/{datapoolName}', 'DELETE',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='Datapool',  # noqa: E501
        auth_settings=auth_settings,
        async_req=params.get('async_req'),
        _return_http_data_only=params.get('_return_http_data_only'),
        _preload_content=params.get('_preload_content', True),
        _request_timeout=params.get('_request_timeout'),
        collection_formats=collection_formats)

def delete_failed_validation_datapool(

self, authorization, datapool_name, **kwargs)

Delete a creating datapool that failed with a validation error. # noqa: E501

This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True

thread = api.delete_failed_validation_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: None If the method is called asynchronously, returns the request thread.

def delete_failed_validation_datapool(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """Delete a creating datapool that failed with a validation error.  # noqa: E501
    This method makes a synchronous HTTP request by default. To make an
    asynchronous HTTP request, please pass async_req=True
    >>> thread = api.delete_failed_validation_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: None
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.delete_failed_validation_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
    else:
        (data) = self.delete_failed_validation_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        return data

def delete_failed_validation_datapool_with_http_info(

self, authorization, datapool_name, **kwargs)

Delete a creating datapool that failed with a validation error. # noqa: E501

This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True

thread = api.delete_failed_validation_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: None If the method is called asynchronously, returns the request thread.

def delete_failed_validation_datapool_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """Delete a creating datapool that failed with a validation error.  # noqa: E501
    This method makes a synchronous HTTP request by default. To make an
    asynchronous HTTP request, please pass async_req=True
    >>> thread = api.delete_failed_validation_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: None
             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 delete_failed_validation_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 `delete_failed_validation_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 `delete_failed_validation_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
    # Authentication setting
    auth_settings = []  # noqa: E501
    return self.api_client.call_api(
        '/api/v1/datapools/deleteFailedValidationDatapool/{datapoolName}', 'DELETE',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type=None,  # 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_datapools_for_user(

self, authorization, **kwargs)

Return all datapools a user has access to. # 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_datapools_for_user(authorization, async_req=True) result = thread.get()

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

def get_all_datapools_for_user(self, authorization, **kwargs):  # noqa: E501
    """Return all datapools a user has access to.  # 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_datapools_for_user(authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param str authorization: Authorization (required)
    :return: UserDatapools
             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_datapools_for_user_with_http_info(authorization, **kwargs)  # noqa: E501
    else:
        (data) = self.get_all_datapools_for_user_with_http_info(authorization, **kwargs)  # noqa: E501
        return data

def get_all_datapools_for_user_with_http_info(

self, authorization, **kwargs)

Return all datapools a user has access to. # 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_datapools_for_user_with_http_info(authorization, async_req=True) result = thread.get()

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

def get_all_datapools_for_user_with_http_info(self, authorization, **kwargs):  # noqa: E501
    """Return all datapools a user has access to.  # 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_datapools_for_user_with_http_info(authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param str authorization: Authorization (required)
    :return: UserDatapools
             If the method is called asynchronously,
             returns the request thread.
    """
    all_params = ['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 get_all_datapools_for_user" % 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_datapools_for_user`")  # 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
    # 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/datapools', 'GET',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='UserDatapools',  # 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(

self, authorization, datapool_name, **kwargs)

Get datapool by datapool name. # 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(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: Datapool If the method is called asynchronously, returns the request thread.

def get_datapool(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """Get datapool by datapool name.  # 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(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: Datapool
             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_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
    else:
        (data) = self.get_datapool_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        return data

def get_datapool_shared_bucket_information(

self, authorization, datapool_name, **kwargs)

Get datapool shared bucket information by datapool name. # 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_shared_bucket_information(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: DatapoolSharedBucketInformation If the method is called asynchronously, returns the request thread.

def get_datapool_shared_bucket_information(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """Get datapool shared bucket information by datapool name.  # 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_shared_bucket_information(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: DatapoolSharedBucketInformation
             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_shared_bucket_information_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
    else:
        (data) = self.get_datapool_shared_bucket_information_with_http_info(authorization, datapool_name, **kwargs)  # noqa: E501
        return data

def get_datapool_shared_bucket_information_with_http_info(

self, authorization, datapool_name, **kwargs)

Get datapool shared bucket information by datapool name. # 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_shared_bucket_information_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: DatapoolSharedBucketInformation If the method is called asynchronously, returns the request thread.

def get_datapool_shared_bucket_information_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """Get datapool shared bucket information by datapool name.  # 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_shared_bucket_information_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: DatapoolSharedBucketInformation
             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_shared_bucket_information" % 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_shared_bucket_information`")  # 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_shared_bucket_information`")  # 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/datapools/{datapoolName}/sharedBucketInformation', 'GET',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='DatapoolSharedBucketInformation',  # 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_with_http_info(

self, authorization, datapool_name, **kwargs)

Get datapool by datapool name. # 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_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: Datapool If the method is called asynchronously, returns the request thread.

def get_datapool_with_http_info(self, authorization, datapool_name, **kwargs):  # noqa: E501
    """Get datapool by datapool name.  # 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_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: Datapool
             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" % 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`")  # 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`")  # 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/datapools/{datapoolName}', 'GET',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='Datapool',  # 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_resources_for_configuration(

self, body, authorization, **kwargs)

Get datapool resources for a given configuration. # 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_resources_for_configuration(body, authorization, async_req=True) result = thread.get()

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

def get_resources_for_configuration(self, body, authorization, **kwargs):  # noqa: E501
    """Get datapool resources for a given configuration.  # 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_resources_for_configuration(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param InfrastructureProviderConfiguration body: configuration (required)
    :param str authorization: Authorization (required)
    :return: DatapoolResources
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.get_resources_for_configuration_with_http_info(body, authorization, **kwargs)  # noqa: E501
    else:
        (data) = self.get_resources_for_configuration_with_http_info(body, authorization, **kwargs)  # noqa: E501
        return data

def get_resources_for_configuration_with_http_info(

self, body, authorization, **kwargs)

Get datapool resources for a given configuration. # 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_resources_for_configuration_with_http_info(body, authorization, async_req=True) result = thread.get()

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

def get_resources_for_configuration_with_http_info(self, body, authorization, **kwargs):  # noqa: E501
    """Get datapool resources for a given configuration.  # 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_resources_for_configuration_with_http_info(body, authorization, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param InfrastructureProviderConfiguration body: configuration (required)
    :param str authorization: Authorization (required)
    :return: DatapoolResources
             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 get_resources_for_configuration" % 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 `get_resources_for_configuration`")  # 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 `get_resources_for_configuration`")  # 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/datapools/getResourcesForConfiguration', 'PUT',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='DatapoolResources',  # noqa: E501
        auth_settings=auth_settings,
        async_req=params.get('async_req'),
        _return_http_data_only=params.get('_return_http_data_only'),
        _preload_content=params.get('_preload_content', True),
        _request_timeout=params.get('_request_timeout'),
        collection_formats=collection_formats)

def update_datapool_infrastructure_provider_configuration(

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

Update the infrastructureProviderConfiguration for a 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.update_datapool_infrastructure_provider_configuration(body, authorization, datapool_name, async_req=True) result = thread.get()

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

def update_datapool_infrastructure_provider_configuration(self, body, authorization, datapool_name, **kwargs):  # noqa: E501
    """Update the infrastructureProviderConfiguration for a 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.update_datapool_infrastructure_provider_configuration(body, authorization, datapool_name, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param InfrastructureProviderConfiguration body: infrastructureProviderConfiguration (required)
    :param str authorization: Authorization (required)
    :param str datapool_name: datapoolName (required)
    :return: Datapool
             If the method is called asynchronously,
             returns the request thread.
    """
    kwargs['_return_http_data_only'] = True
    if kwargs.get('async_req'):
        return self.update_datapool_infrastructure_provider_configuration_with_http_info(body, authorization, datapool_name, **kwargs)  # noqa: E501
    else:
        (data) = self.update_datapool_infrastructure_provider_configuration_with_http_info(body, authorization, datapool_name, **kwargs)  # noqa: E501
        return data

def update_datapool_infrastructure_provider_configuration_with_http_info(

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

Update the infrastructureProviderConfiguration for a 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.update_datapool_infrastructure_provider_configuration_with_http_info(body, authorization, datapool_name, async_req=True) result = thread.get()

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

def update_datapool_infrastructure_provider_configuration_with_http_info(self, body, authorization, datapool_name, **kwargs):  # noqa: E501
    """Update the infrastructureProviderConfiguration for a 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.update_datapool_infrastructure_provider_configuration_with_http_info(body, authorization, datapool_name, async_req=True)
    >>> result = thread.get()
    :param async_req bool
    :param InfrastructureProviderConfiguration body: infrastructureProviderConfiguration (required)
    :param str authorization: Authorization (required)
    :param str datapool_name: datapoolName (required)
    :return: Datapool
             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 update_datapool_infrastructure_provider_configuration" % key
            )
        params[key] = val
    del params['kwargs']
    # verify the required parameter 'body' is set
    if ('body' not in params or
            params['body'] is None):
        raise ValueError("Missing the required parameter `body` when calling `update_datapool_infrastructure_provider_configuration`")  # noqa: E501
    # verify the required parameter 'authorization' is set
    if ('authorization' not in params or
            params['authorization'] is None):
        raise ValueError("Missing the required parameter `authorization` when calling `update_datapool_infrastructure_provider_configuration`")  # noqa: E501
    # verify the required parameter 'datapool_name' is set
    if ('datapool_name' not in params or
            params['datapool_name'] is None):
        raise ValueError("Missing the required parameter `datapool_name` when calling `update_datapool_infrastructure_provider_configuration`")  # 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/datapools/{datapoolName}/infrastructureProviderConfiguration', 'PUT',
        path_params,
        query_params,
        header_params,
        body=body_params,
        post_params=form_params,
        files=local_var_files,
        response_type='Datapool',  # 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