lentiq.api.project_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 ProjectPublicApiControllerApi(object): """ Ref: """ def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client def create_project(self, body, authorization, datapool_name, **kwargs): # noqa: E501 """Create project inside the 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_project(body, authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param Project body: project (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: Project If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.create_project_with_http_info(body, authorization, datapool_name, **kwargs) # noqa: E501 else: (data) = self.create_project_with_http_info(body, authorization, datapool_name, **kwargs) # noqa: E501 return data def create_project_with_http_info(self, body, authorization, datapool_name, **kwargs): # noqa: E501 """Create project inside the 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_project_with_http_info(body, authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param Project body: project (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: Project If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization', 'datapool_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method create_project" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'body' is set if ('body' not in params or params['body'] is None): raise ValueError("Missing the required parameter `body` when calling `create_project`") # noqa: E501 # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `create_project`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `create_project`") # 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/projects/{datapoolName}', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Project', # 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_project(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Delete a creating project 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_project(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: 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_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.delete_failed_validation_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data def delete_failed_validation_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Delete a creating project 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_project_with_http_info(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: None If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method delete_failed_validation_project" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `delete_failed_validation_project`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `delete_failed_validation_project`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `delete_failed_validation_project`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/deleteFailedValidationProject/{datapoolName}/{projectName}', '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 delete_project(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Delete project from 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_project(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.delete_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.delete_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data def delete_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Delete project from 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_project_with_http_info(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method delete_project" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `delete_project`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `delete_project`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `delete_project`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/{datapoolName}/{projectName}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Project', # 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_projects_for_datapool(self, authorization, datapool_name, **kwargs): # noqa: E501 """Get all projects from 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.get_all_projects_for_datapool(authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: list[Project] 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_projects_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 else: (data) = self.get_all_projects_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 return data def get_all_projects_for_datapool_with_http_info(self, authorization, datapool_name, **kwargs): # noqa: E501 """Get all projects from 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.get_all_projects_for_datapool_with_http_info(authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: list[Project] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method get_all_projects_for_datapool" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `get_all_projects_for_datapool`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `get_all_projects_for_datapool`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/{datapoolName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Project]', # 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_projects_for_user(self, authorization, **kwargs): # noqa: E501 """Get all projects 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_projects_for_user(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: UserProjects 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_projects_for_user_with_http_info(authorization, **kwargs) # noqa: E501 else: (data) = self.get_all_projects_for_user_with_http_info(authorization, **kwargs) # noqa: E501 return data def get_all_projects_for_user_with_http_info(self, authorization, **kwargs): # noqa: E501 """Get all projects 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_projects_for_user_with_http_info(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: UserProjects 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_projects_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_projects_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/projects', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='UserProjects', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def get_project(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Get project from datapool by 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_project(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.get_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data def get_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Get project from datapool by 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_project_with_http_info(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method get_project" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `get_project`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `get_project`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `get_project`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/{datapoolName}/{projectName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Project', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def get_project_bucket_information(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Get project bucket information. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_project_bucket_information(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: ProjectBucketInformation If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_project_bucket_information_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.get_project_bucket_information_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data def get_project_bucket_information_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Get project bucket information. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_project_bucket_information_with_http_info(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: ProjectBucketInformation If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method get_project_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_project_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_project_bucket_information`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `get_project_bucket_information`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/{datapoolName}/{projectName}/bucketInformation', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='ProjectBucketInformation', # 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_project_quota(self, body, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Update project quota for a project. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_project_quota(body, authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param ProjectQuota body: projectQuota (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.update_project_quota_with_http_info(body, authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.update_project_quota_with_http_info(body, authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data def update_project_quota_with_http_info(self, body, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Update project quota for a project. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_project_quota_with_http_info(body, authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param ProjectQuota body: projectQuota (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method update_project_quota" % 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_project_quota`") # 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_project_quota`") # 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_project_quota`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `update_project_quota`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/{datapoolName}/{projectName}/projectQuota', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Project', # 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 ProjectPublicApiControllerApi
Ref:
class ProjectPublicApiControllerApi(object): """ Ref: """ def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client def create_project(self, body, authorization, datapool_name, **kwargs): # noqa: E501 """Create project inside the 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_project(body, authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param Project body: project (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: Project If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.create_project_with_http_info(body, authorization, datapool_name, **kwargs) # noqa: E501 else: (data) = self.create_project_with_http_info(body, authorization, datapool_name, **kwargs) # noqa: E501 return data def create_project_with_http_info(self, body, authorization, datapool_name, **kwargs): # noqa: E501 """Create project inside the 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_project_with_http_info(body, authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param Project body: project (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: Project If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization', 'datapool_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method create_project" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'body' is set if ('body' not in params or params['body'] is None): raise ValueError("Missing the required parameter `body` when calling `create_project`") # noqa: E501 # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `create_project`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `create_project`") # 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/projects/{datapoolName}', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Project', # 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_project(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Delete a creating project 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_project(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: 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_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.delete_failed_validation_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data def delete_failed_validation_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Delete a creating project 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_project_with_http_info(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: None If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method delete_failed_validation_project" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `delete_failed_validation_project`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `delete_failed_validation_project`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `delete_failed_validation_project`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/deleteFailedValidationProject/{datapoolName}/{projectName}', '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 delete_project(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Delete project from 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_project(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.delete_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.delete_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data def delete_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Delete project from 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_project_with_http_info(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method delete_project" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `delete_project`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `delete_project`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `delete_project`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/{datapoolName}/{projectName}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Project', # 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_projects_for_datapool(self, authorization, datapool_name, **kwargs): # noqa: E501 """Get all projects from 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.get_all_projects_for_datapool(authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: list[Project] 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_projects_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 else: (data) = self.get_all_projects_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 return data def get_all_projects_for_datapool_with_http_info(self, authorization, datapool_name, **kwargs): # noqa: E501 """Get all projects from 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.get_all_projects_for_datapool_with_http_info(authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: list[Project] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method get_all_projects_for_datapool" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `get_all_projects_for_datapool`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `get_all_projects_for_datapool`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/{datapoolName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Project]', # 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_projects_for_user(self, authorization, **kwargs): # noqa: E501 """Get all projects 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_projects_for_user(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: UserProjects 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_projects_for_user_with_http_info(authorization, **kwargs) # noqa: E501 else: (data) = self.get_all_projects_for_user_with_http_info(authorization, **kwargs) # noqa: E501 return data def get_all_projects_for_user_with_http_info(self, authorization, **kwargs): # noqa: E501 """Get all projects 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_projects_for_user_with_http_info(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: UserProjects 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_projects_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_projects_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/projects', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='UserProjects', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def get_project(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Get project from datapool by 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_project(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.get_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data def get_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Get project from datapool by 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_project_with_http_info(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method get_project" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `get_project`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `get_project`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `get_project`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/{datapoolName}/{projectName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Project', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def get_project_bucket_information(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Get project bucket information. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_project_bucket_information(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: ProjectBucketInformation If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_project_bucket_information_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.get_project_bucket_information_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data def get_project_bucket_information_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Get project bucket information. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_project_bucket_information_with_http_info(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: ProjectBucketInformation If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method get_project_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_project_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_project_bucket_information`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `get_project_bucket_information`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/{datapoolName}/{projectName}/bucketInformation', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='ProjectBucketInformation', # 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_project_quota(self, body, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Update project quota for a project. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_project_quota(body, authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param ProjectQuota body: projectQuota (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.update_project_quota_with_http_info(body, authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.update_project_quota_with_http_info(body, authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data def update_project_quota_with_http_info(self, body, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Update project quota for a project. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_project_quota_with_http_info(body, authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param ProjectQuota body: projectQuota (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method update_project_quota" % 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_project_quota`") # 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_project_quota`") # 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_project_quota`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `update_project_quota`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/{datapoolName}/{projectName}/projectQuota', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Project', # 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)
- ProjectPublicApiControllerApi
- builtins.object
Static methods
def __init__(
self, api_client=None)
Initialize self. See help(type(self)) for accurate signature.
def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client
def create_project(
self, body, authorization, datapool_name, **kwargs)
Create project inside the 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_project(body, authorization, datapool_name, async_req=True) result = thread.get()
:param async_req bool :param Project body: project (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: Project If the method is called asynchronously, returns the request thread.
def create_project(self, body, authorization, datapool_name, **kwargs): # noqa: E501 """Create project inside the 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_project(body, authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param Project body: project (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: Project If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.create_project_with_http_info(body, authorization, datapool_name, **kwargs) # noqa: E501 else: (data) = self.create_project_with_http_info(body, authorization, datapool_name, **kwargs) # noqa: E501 return data
def create_project_with_http_info(
self, body, authorization, datapool_name, **kwargs)
Create project inside the 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_project_with_http_info(body, authorization, datapool_name, async_req=True) result = thread.get()
:param async_req bool :param Project body: project (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: Project If the method is called asynchronously, returns the request thread.
def create_project_with_http_info(self, body, authorization, datapool_name, **kwargs): # noqa: E501 """Create project inside the 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_project_with_http_info(body, authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param Project body: project (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: Project If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization', 'datapool_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method create_project" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'body' is set if ('body' not in params or params['body'] is None): raise ValueError("Missing the required parameter `body` when calling `create_project`") # noqa: E501 # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `create_project`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `create_project`") # 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/projects/{datapoolName}', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Project', # 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_project(
self, authorization, datapool_name, project_name, **kwargs)
Delete a creating project 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_project(authorization, datapool_name, project_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: None If the method is called asynchronously, returns the request thread.
def delete_failed_validation_project(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Delete a creating project 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_project(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: 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_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.delete_failed_validation_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data
def delete_failed_validation_project_with_http_info(
self, authorization, datapool_name, project_name, **kwargs)
Delete a creating project 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_project_with_http_info(authorization, datapool_name, project_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: None If the method is called asynchronously, returns the request thread.
def delete_failed_validation_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Delete a creating project 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_project_with_http_info(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: None If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method delete_failed_validation_project" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `delete_failed_validation_project`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `delete_failed_validation_project`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `delete_failed_validation_project`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/deleteFailedValidationProject/{datapoolName}/{projectName}', '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 delete_project(
self, authorization, datapool_name, project_name, **kwargs)
Delete project from 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_project(authorization, datapool_name, project_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread.
def delete_project(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Delete project from 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_project(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.delete_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.delete_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data
def delete_project_with_http_info(
self, authorization, datapool_name, project_name, **kwargs)
Delete project from 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_project_with_http_info(authorization, datapool_name, project_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread.
def delete_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Delete project from 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_project_with_http_info(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method delete_project" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `delete_project`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `delete_project`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `delete_project`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/{datapoolName}/{projectName}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Project', # 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_projects_for_datapool(
self, authorization, datapool_name, **kwargs)
Get all projects from 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.get_all_projects_for_datapool(authorization, datapool_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: list[Project] If the method is called asynchronously, returns the request thread.
def get_all_projects_for_datapool(self, authorization, datapool_name, **kwargs): # noqa: E501 """Get all projects from 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.get_all_projects_for_datapool(authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: list[Project] 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_projects_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 else: (data) = self.get_all_projects_for_datapool_with_http_info(authorization, datapool_name, **kwargs) # noqa: E501 return data
def get_all_projects_for_datapool_with_http_info(
self, authorization, datapool_name, **kwargs)
Get all projects from 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.get_all_projects_for_datapool_with_http_info(authorization, datapool_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: list[Project] If the method is called asynchronously, returns the request thread.
def get_all_projects_for_datapool_with_http_info(self, authorization, datapool_name, **kwargs): # noqa: E501 """Get all projects from 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.get_all_projects_for_datapool_with_http_info(authorization, datapool_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :return: list[Project] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method get_all_projects_for_datapool" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `get_all_projects_for_datapool`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `get_all_projects_for_datapool`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/{datapoolName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Project]', # 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_projects_for_user(
self, authorization, **kwargs)
Get all projects 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_projects_for_user(authorization, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :return: UserProjects If the method is called asynchronously, returns the request thread.
def get_all_projects_for_user(self, authorization, **kwargs): # noqa: E501 """Get all projects 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_projects_for_user(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: UserProjects 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_projects_for_user_with_http_info(authorization, **kwargs) # noqa: E501 else: (data) = self.get_all_projects_for_user_with_http_info(authorization, **kwargs) # noqa: E501 return data
def get_all_projects_for_user_with_http_info(
self, authorization, **kwargs)
Get all projects 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_projects_for_user_with_http_info(authorization, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :return: UserProjects If the method is called asynchronously, returns the request thread.
def get_all_projects_for_user_with_http_info(self, authorization, **kwargs): # noqa: E501 """Get all projects 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_projects_for_user_with_http_info(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: UserProjects 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_projects_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_projects_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/projects', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='UserProjects', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats)
def get_project(
self, authorization, datapool_name, project_name, **kwargs)
Get project from datapool by 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_project(authorization, datapool_name, project_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread.
def get_project(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Get project from datapool by 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_project(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.get_project_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data
def get_project_bucket_information(
self, authorization, datapool_name, project_name, **kwargs)
Get project bucket information. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.get_project_bucket_information(authorization, datapool_name, project_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: ProjectBucketInformation If the method is called asynchronously, returns the request thread.
def get_project_bucket_information(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Get project bucket information. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_project_bucket_information(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: ProjectBucketInformation If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_project_bucket_information_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.get_project_bucket_information_with_http_info(authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data
def get_project_bucket_information_with_http_info(
self, authorization, datapool_name, project_name, **kwargs)
Get project bucket information. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.get_project_bucket_information_with_http_info(authorization, datapool_name, project_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: ProjectBucketInformation If the method is called asynchronously, returns the request thread.
def get_project_bucket_information_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Get project bucket information. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_project_bucket_information_with_http_info(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: ProjectBucketInformation If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method get_project_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_project_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_project_bucket_information`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `get_project_bucket_information`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/{datapoolName}/{projectName}/bucketInformation', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='ProjectBucketInformation', # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats)
def get_project_with_http_info(
self, authorization, datapool_name, project_name, **kwargs)
Get project from datapool by 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_project_with_http_info(authorization, datapool_name, project_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread.
def get_project_with_http_info(self, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Get project from datapool by 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_project_with_http_info(authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method get_project" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `get_project`") # noqa: E501 # verify the required parameter 'datapool_name' is set if ('datapool_name' not in params or params['datapool_name'] is None): raise ValueError("Missing the required parameter `datapool_name` when calling `get_project`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `get_project`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/{datapoolName}/{projectName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Project', # 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_project_quota(
self, body, authorization, datapool_name, project_name, **kwargs)
Update project quota for a project. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.update_project_quota(body, authorization, datapool_name, project_name, async_req=True) result = thread.get()
:param async_req bool :param ProjectQuota body: projectQuota (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread.
def update_project_quota(self, body, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Update project quota for a project. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_project_quota(body, authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param ProjectQuota body: projectQuota (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.update_project_quota_with_http_info(body, authorization, datapool_name, project_name, **kwargs) # noqa: E501 else: (data) = self.update_project_quota_with_http_info(body, authorization, datapool_name, project_name, **kwargs) # noqa: E501 return data
def update_project_quota_with_http_info(
self, body, authorization, datapool_name, project_name, **kwargs)
Update project quota for a project. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.update_project_quota_with_http_info(body, authorization, datapool_name, project_name, async_req=True) result = thread.get()
:param async_req bool :param ProjectQuota body: projectQuota (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread.
def update_project_quota_with_http_info(self, body, authorization, datapool_name, project_name, **kwargs): # noqa: E501 """Update project quota for a project. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_project_quota_with_http_info(body, authorization, datapool_name, project_name, async_req=True) >>> result = thread.get() :param async_req bool :param ProjectQuota body: projectQuota (required) :param str authorization: Authorization (required) :param str datapool_name: datapoolName (required) :param str project_name: projectName (required) :return: Project If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization', 'datapool_name', 'project_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method update_project_quota" % 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_project_quota`") # 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_project_quota`") # 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_project_quota`") # noqa: E501 # verify the required parameter 'project_name' is set if ('project_name' not in params or params['project_name'] is None): raise ValueError("Missing the required parameter `project_name` when calling `update_project_quota`") # noqa: E501 collection_formats = {} path_params = {} if 'datapool_name' in params: path_params['datapoolName'] = params['datapool_name'] # noqa: E501 if 'project_name' in params: path_params['projectName'] = params['project_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/projects/{datapoolName}/{projectName}/projectQuota', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Project', # 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