lentiq.api.notebooks_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 NotebooksPublicApiControllerApi(object): """ Ref: """ def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client def create_notebook(self, body, authorization, **kwargs): # noqa: E501 """Create a notebook # 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_notebook(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Notebook body: notebook (required) :param str authorization: Authorization (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.create_notebook_with_http_info(body, authorization, **kwargs) # noqa: E501 else: (data) = self.create_notebook_with_http_info(body, authorization, **kwargs) # noqa: E501 return data def create_notebook_with_http_info(self, body, authorization, **kwargs): # noqa: E501 """Create a notebook # 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_notebook_with_http_info(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Notebook body: notebook (required) :param str authorization: Authorization (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method create_notebook" % 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_notebook`") # 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_notebook`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/notebooks/', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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_notebook_by_datalake_id(self, authorization, datalake_id, notebook_name, version, **kwargs): # noqa: E501 """Delete a notebook # 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_notebook_by_datalake_id(authorization, datalake_id, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :param int version: version (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_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, version, **kwargs) # noqa: E501 else: (data) = self.delete_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, version, **kwargs) # noqa: E501 return data def delete_notebook_by_datalake_id_with_http_info(self, authorization, datalake_id, notebook_name, version, **kwargs): # noqa: E501 """Delete a notebook # 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_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: None If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_id', 'notebook_name', 'version'] # 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_notebook_by_datalake_id" % 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_notebook_by_datalake_id`") # noqa: E501 # verify the required parameter 'datalake_id' is set if ('datalake_id' not in params or params['datalake_id'] is None): raise ValueError("Missing the required parameter `datalake_id` when calling `delete_notebook_by_datalake_id`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `delete_notebook_by_datalake_id`") # noqa: E501 # verify the required parameter 'version' is set if ('version' not in params or params['version'] is None): raise ValueError("Missing the required parameter `version` when calling `delete_notebook_by_datalake_id`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_id' in params: path_params['datalakeId'] = params['datalake_id'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_name'] # noqa: E501 if 'version' in params: path_params['version'] = params['version'] # 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/notebooks/datalakeId/{datalakeId}/{notebookName}/{version}', '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_notebook_by_datalake_name(self, authorization, datalake_name, notebook_name, version, **kwargs): # noqa: E501 """Delete a notebook # 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_notebook_by_datalake_name(authorization, datalake_name, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :param int version: version (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_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, version, **kwargs) # noqa: E501 else: (data) = self.delete_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, version, **kwargs) # noqa: E501 return data def delete_notebook_by_datalake_name_with_http_info(self, authorization, datalake_name, notebook_name, version, **kwargs): # noqa: E501 """Delete a notebook # 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_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: None If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_name', 'notebook_name', 'version'] # 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_notebook_by_datalake_name" % 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_notebook_by_datalake_name`") # noqa: E501 # verify the required parameter 'datalake_name' is set if ('datalake_name' not in params or params['datalake_name'] is None): raise ValueError("Missing the required parameter `datalake_name` when calling `delete_notebook_by_datalake_name`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `delete_notebook_by_datalake_name`") # noqa: E501 # verify the required parameter 'version' is set if ('version' not in params or params['version'] is None): raise ValueError("Missing the required parameter `version` when calling `delete_notebook_by_datalake_name`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_name' in params: path_params['datalakeName'] = params['datalake_name'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_name'] # noqa: E501 if 'version' in params: path_params['version'] = params['version'] # 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/notebooks/datalakeName/{datalakeName}/{notebookName}/{version}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type=None, # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def get_all_notebooks(self, authorization, **kwargs): # noqa: E501 """Get all notebooks 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_notebooks(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: dict(str, list[Notebook]) 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_notebooks_with_http_info(authorization, **kwargs) # noqa: E501 else: (data) = self.get_all_notebooks_with_http_info(authorization, **kwargs) # noqa: E501 return data def get_all_notebooks_with_http_info(self, authorization, **kwargs): # noqa: E501 """Get all notebooks 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_notebooks_with_http_info(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: dict(str, list[Notebook]) 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_notebooks" % 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_notebooks`") # 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/notebooks/', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='dict(str, list[Notebook])', # 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_notebooks_by_datalake_id(self, authorization, datalake_id, **kwargs): # noqa: E501 """Get all notebooks in a datalake by datalake id # 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_notebooks_by_datalake_id(authorization, datalake_id, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :return: list[Notebook] 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_notebooks_by_datalake_id_with_http_info(authorization, datalake_id, **kwargs) # noqa: E501 else: (data) = self.get_all_notebooks_by_datalake_id_with_http_info(authorization, datalake_id, **kwargs) # noqa: E501 return data def get_all_notebooks_by_datalake_id_with_http_info(self, authorization, datalake_id, **kwargs): # noqa: E501 """Get all notebooks in a datalake by datalake id # 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_notebooks_by_datalake_id_with_http_info(authorization, datalake_id, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :return: list[Notebook] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_id'] # 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_notebooks_by_datalake_id" % 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_notebooks_by_datalake_id`") # noqa: E501 # verify the required parameter 'datalake_id' is set if ('datalake_id' not in params or params['datalake_id'] is None): raise ValueError("Missing the required parameter `datalake_id` when calling `get_all_notebooks_by_datalake_id`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_id' in params: path_params['datalakeId'] = params['datalake_id'] # 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/notebooks/datalakeId/{datalakeId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Notebook]', # 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_notebooks_by_datalake_name(self, authorization, datalake_name, **kwargs): # noqa: E501 """Get all notebooks in a datalake by datalake 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_all_notebooks_by_datalake_name(authorization, datalake_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :return: list[Notebook] 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_notebooks_by_datalake_name_with_http_info(authorization, datalake_name, **kwargs) # noqa: E501 else: (data) = self.get_all_notebooks_by_datalake_name_with_http_info(authorization, datalake_name, **kwargs) # noqa: E501 return data def get_all_notebooks_by_datalake_name_with_http_info(self, authorization, datalake_name, **kwargs): # noqa: E501 """Get all notebooks in a datalake by datalake 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_all_notebooks_by_datalake_name_with_http_info(authorization, datalake_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :return: list[Notebook] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_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_notebooks_by_datalake_name" % 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_notebooks_by_datalake_name`") # noqa: E501 # verify the required parameter 'datalake_name' is set if ('datalake_name' not in params or params['datalake_name'] is None): raise ValueError("Missing the required parameter `datalake_name` when calling `get_all_notebooks_by_datalake_name`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_name' in params: path_params['datalakeName'] = params['datalake_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/notebooks/datalakeName/{datalakeName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Notebook]', # 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_notebook_by_datalake_id(self, authorization, datalake_id, notebook_name, **kwargs): # noqa: E501 """Get a notebook by notebook name and datalake id with the latest version # 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_notebook_by_datalake_id(authorization, datalake_id, notebook_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, **kwargs) # noqa: E501 else: (data) = self.get_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, **kwargs) # noqa: E501 return data def get_notebook_by_datalake_id_with_http_info(self, authorization, datalake_id, notebook_name, **kwargs): # noqa: E501 """Get a notebook by notebook name and datalake id with the latest version # 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_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_id', 'notebook_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_notebook_by_datalake_id" % 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_notebook_by_datalake_id`") # noqa: E501 # verify the required parameter 'datalake_id' is set if ('datalake_id' not in params or params['datalake_id'] is None): raise ValueError("Missing the required parameter `datalake_id` when calling `get_notebook_by_datalake_id`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `get_notebook_by_datalake_id`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_id' in params: path_params['datalakeId'] = params['datalake_id'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_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/notebooks/datalakeId/{datalakeId}/{notebookName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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_notebook_by_datalake_id_and_version(self, authorization, datalake_id, notebook_name, version, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake id and version # 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_notebook_by_datalake_id_and_version(authorization, datalake_id, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_notebook_by_datalake_id_and_version_with_http_info(authorization, datalake_id, notebook_name, version, **kwargs) # noqa: E501 else: (data) = self.get_notebook_by_datalake_id_and_version_with_http_info(authorization, datalake_id, notebook_name, version, **kwargs) # noqa: E501 return data def get_notebook_by_datalake_id_and_version_with_http_info(self, authorization, datalake_id, notebook_name, version, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake id and version # 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_notebook_by_datalake_id_and_version_with_http_info(authorization, datalake_id, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_id', 'notebook_name', 'version'] # 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_notebook_by_datalake_id_and_version" % 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_notebook_by_datalake_id_and_version`") # noqa: E501 # verify the required parameter 'datalake_id' is set if ('datalake_id' not in params or params['datalake_id'] is None): raise ValueError("Missing the required parameter `datalake_id` when calling `get_notebook_by_datalake_id_and_version`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `get_notebook_by_datalake_id_and_version`") # noqa: E501 # verify the required parameter 'version' is set if ('version' not in params or params['version'] is None): raise ValueError("Missing the required parameter `version` when calling `get_notebook_by_datalake_id_and_version`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_id' in params: path_params['datalakeId'] = params['datalake_id'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_name'] # noqa: E501 if 'version' in params: path_params['version'] = params['version'] # 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/notebooks/datalakeId/{datalakeId}/{notebookName}/{version}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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_notebook_by_datalake_name(self, authorization, datalake_name, notebook_name, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake name with the latest version # 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_notebook_by_datalake_name(authorization, datalake_name, notebook_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, **kwargs) # noqa: E501 else: (data) = self.get_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, **kwargs) # noqa: E501 return data def get_notebook_by_datalake_name_with_http_info(self, authorization, datalake_name, notebook_name, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake name with the latest version # 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_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_name', 'notebook_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_notebook_by_datalake_name" % 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_notebook_by_datalake_name`") # noqa: E501 # verify the required parameter 'datalake_name' is set if ('datalake_name' not in params or params['datalake_name'] is None): raise ValueError("Missing the required parameter `datalake_name` when calling `get_notebook_by_datalake_name`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `get_notebook_by_datalake_name`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_name' in params: path_params['datalakeName'] = params['datalake_name'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_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/notebooks/datalakeName/{datalakeName}/{notebookName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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_notebook_by_datalake_name_and_version(self, authorization, datalake_name, notebook_name, version, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake and version # 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_notebook_by_datalake_name_and_version(authorization, datalake_name, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_notebook_by_datalake_name_and_version_with_http_info(authorization, datalake_name, notebook_name, version, **kwargs) # noqa: E501 else: (data) = self.get_notebook_by_datalake_name_and_version_with_http_info(authorization, datalake_name, notebook_name, version, **kwargs) # noqa: E501 return data def get_notebook_by_datalake_name_and_version_with_http_info(self, authorization, datalake_name, notebook_name, version, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake and version # 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_notebook_by_datalake_name_and_version_with_http_info(authorization, datalake_name, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_name', 'notebook_name', 'version'] # 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_notebook_by_datalake_name_and_version" % 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_notebook_by_datalake_name_and_version`") # noqa: E501 # verify the required parameter 'datalake_name' is set if ('datalake_name' not in params or params['datalake_name'] is None): raise ValueError("Missing the required parameter `datalake_name` when calling `get_notebook_by_datalake_name_and_version`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `get_notebook_by_datalake_name_and_version`") # noqa: E501 # verify the required parameter 'version' is set if ('version' not in params or params['version'] is None): raise ValueError("Missing the required parameter `version` when calling `get_notebook_by_datalake_name_and_version`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_name' in params: path_params['datalakeName'] = params['datalake_name'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_name'] # noqa: E501 if 'version' in params: path_params['version'] = params['version'] # 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/notebooks/datalakeName/{datalakeName}/{notebookName}/{version}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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_notebook(self, body, authorization, **kwargs): # noqa: E501 """Update a notebook # 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_notebook(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Notebook body: notebook (required) :param str authorization: Authorization (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.update_notebook_with_http_info(body, authorization, **kwargs) # noqa: E501 else: (data) = self.update_notebook_with_http_info(body, authorization, **kwargs) # noqa: E501 return data def update_notebook_with_http_info(self, body, authorization, **kwargs): # noqa: E501 """Update a notebook # 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_notebook_with_http_info(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Notebook body: notebook (required) :param str authorization: Authorization (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method update_notebook" % 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_notebook`") # 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_notebook`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/notebooks/', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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 NotebooksPublicApiControllerApi
Ref:
class NotebooksPublicApiControllerApi(object): """ Ref: """ def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client def create_notebook(self, body, authorization, **kwargs): # noqa: E501 """Create a notebook # 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_notebook(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Notebook body: notebook (required) :param str authorization: Authorization (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.create_notebook_with_http_info(body, authorization, **kwargs) # noqa: E501 else: (data) = self.create_notebook_with_http_info(body, authorization, **kwargs) # noqa: E501 return data def create_notebook_with_http_info(self, body, authorization, **kwargs): # noqa: E501 """Create a notebook # 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_notebook_with_http_info(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Notebook body: notebook (required) :param str authorization: Authorization (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method create_notebook" % 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_notebook`") # 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_notebook`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/notebooks/', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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_notebook_by_datalake_id(self, authorization, datalake_id, notebook_name, version, **kwargs): # noqa: E501 """Delete a notebook # 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_notebook_by_datalake_id(authorization, datalake_id, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :param int version: version (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_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, version, **kwargs) # noqa: E501 else: (data) = self.delete_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, version, **kwargs) # noqa: E501 return data def delete_notebook_by_datalake_id_with_http_info(self, authorization, datalake_id, notebook_name, version, **kwargs): # noqa: E501 """Delete a notebook # 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_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: None If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_id', 'notebook_name', 'version'] # 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_notebook_by_datalake_id" % 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_notebook_by_datalake_id`") # noqa: E501 # verify the required parameter 'datalake_id' is set if ('datalake_id' not in params or params['datalake_id'] is None): raise ValueError("Missing the required parameter `datalake_id` when calling `delete_notebook_by_datalake_id`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `delete_notebook_by_datalake_id`") # noqa: E501 # verify the required parameter 'version' is set if ('version' not in params or params['version'] is None): raise ValueError("Missing the required parameter `version` when calling `delete_notebook_by_datalake_id`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_id' in params: path_params['datalakeId'] = params['datalake_id'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_name'] # noqa: E501 if 'version' in params: path_params['version'] = params['version'] # 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/notebooks/datalakeId/{datalakeId}/{notebookName}/{version}', '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_notebook_by_datalake_name(self, authorization, datalake_name, notebook_name, version, **kwargs): # noqa: E501 """Delete a notebook # 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_notebook_by_datalake_name(authorization, datalake_name, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :param int version: version (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_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, version, **kwargs) # noqa: E501 else: (data) = self.delete_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, version, **kwargs) # noqa: E501 return data def delete_notebook_by_datalake_name_with_http_info(self, authorization, datalake_name, notebook_name, version, **kwargs): # noqa: E501 """Delete a notebook # 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_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: None If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_name', 'notebook_name', 'version'] # 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_notebook_by_datalake_name" % 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_notebook_by_datalake_name`") # noqa: E501 # verify the required parameter 'datalake_name' is set if ('datalake_name' not in params or params['datalake_name'] is None): raise ValueError("Missing the required parameter `datalake_name` when calling `delete_notebook_by_datalake_name`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `delete_notebook_by_datalake_name`") # noqa: E501 # verify the required parameter 'version' is set if ('version' not in params or params['version'] is None): raise ValueError("Missing the required parameter `version` when calling `delete_notebook_by_datalake_name`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_name' in params: path_params['datalakeName'] = params['datalake_name'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_name'] # noqa: E501 if 'version' in params: path_params['version'] = params['version'] # 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/notebooks/datalakeName/{datalakeName}/{notebookName}/{version}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type=None, # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def get_all_notebooks(self, authorization, **kwargs): # noqa: E501 """Get all notebooks 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_notebooks(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: dict(str, list[Notebook]) 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_notebooks_with_http_info(authorization, **kwargs) # noqa: E501 else: (data) = self.get_all_notebooks_with_http_info(authorization, **kwargs) # noqa: E501 return data def get_all_notebooks_with_http_info(self, authorization, **kwargs): # noqa: E501 """Get all notebooks 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_notebooks_with_http_info(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: dict(str, list[Notebook]) 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_notebooks" % 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_notebooks`") # 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/notebooks/', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='dict(str, list[Notebook])', # 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_notebooks_by_datalake_id(self, authorization, datalake_id, **kwargs): # noqa: E501 """Get all notebooks in a datalake by datalake id # 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_notebooks_by_datalake_id(authorization, datalake_id, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :return: list[Notebook] 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_notebooks_by_datalake_id_with_http_info(authorization, datalake_id, **kwargs) # noqa: E501 else: (data) = self.get_all_notebooks_by_datalake_id_with_http_info(authorization, datalake_id, **kwargs) # noqa: E501 return data def get_all_notebooks_by_datalake_id_with_http_info(self, authorization, datalake_id, **kwargs): # noqa: E501 """Get all notebooks in a datalake by datalake id # 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_notebooks_by_datalake_id_with_http_info(authorization, datalake_id, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :return: list[Notebook] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_id'] # 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_notebooks_by_datalake_id" % 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_notebooks_by_datalake_id`") # noqa: E501 # verify the required parameter 'datalake_id' is set if ('datalake_id' not in params or params['datalake_id'] is None): raise ValueError("Missing the required parameter `datalake_id` when calling `get_all_notebooks_by_datalake_id`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_id' in params: path_params['datalakeId'] = params['datalake_id'] # 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/notebooks/datalakeId/{datalakeId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Notebook]', # 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_notebooks_by_datalake_name(self, authorization, datalake_name, **kwargs): # noqa: E501 """Get all notebooks in a datalake by datalake 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_all_notebooks_by_datalake_name(authorization, datalake_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :return: list[Notebook] 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_notebooks_by_datalake_name_with_http_info(authorization, datalake_name, **kwargs) # noqa: E501 else: (data) = self.get_all_notebooks_by_datalake_name_with_http_info(authorization, datalake_name, **kwargs) # noqa: E501 return data def get_all_notebooks_by_datalake_name_with_http_info(self, authorization, datalake_name, **kwargs): # noqa: E501 """Get all notebooks in a datalake by datalake 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_all_notebooks_by_datalake_name_with_http_info(authorization, datalake_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :return: list[Notebook] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_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_notebooks_by_datalake_name" % 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_notebooks_by_datalake_name`") # noqa: E501 # verify the required parameter 'datalake_name' is set if ('datalake_name' not in params or params['datalake_name'] is None): raise ValueError("Missing the required parameter `datalake_name` when calling `get_all_notebooks_by_datalake_name`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_name' in params: path_params['datalakeName'] = params['datalake_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/notebooks/datalakeName/{datalakeName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Notebook]', # 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_notebook_by_datalake_id(self, authorization, datalake_id, notebook_name, **kwargs): # noqa: E501 """Get a notebook by notebook name and datalake id with the latest version # 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_notebook_by_datalake_id(authorization, datalake_id, notebook_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, **kwargs) # noqa: E501 else: (data) = self.get_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, **kwargs) # noqa: E501 return data def get_notebook_by_datalake_id_with_http_info(self, authorization, datalake_id, notebook_name, **kwargs): # noqa: E501 """Get a notebook by notebook name and datalake id with the latest version # 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_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_id', 'notebook_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_notebook_by_datalake_id" % 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_notebook_by_datalake_id`") # noqa: E501 # verify the required parameter 'datalake_id' is set if ('datalake_id' not in params or params['datalake_id'] is None): raise ValueError("Missing the required parameter `datalake_id` when calling `get_notebook_by_datalake_id`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `get_notebook_by_datalake_id`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_id' in params: path_params['datalakeId'] = params['datalake_id'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_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/notebooks/datalakeId/{datalakeId}/{notebookName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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_notebook_by_datalake_id_and_version(self, authorization, datalake_id, notebook_name, version, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake id and version # 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_notebook_by_datalake_id_and_version(authorization, datalake_id, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_notebook_by_datalake_id_and_version_with_http_info(authorization, datalake_id, notebook_name, version, **kwargs) # noqa: E501 else: (data) = self.get_notebook_by_datalake_id_and_version_with_http_info(authorization, datalake_id, notebook_name, version, **kwargs) # noqa: E501 return data def get_notebook_by_datalake_id_and_version_with_http_info(self, authorization, datalake_id, notebook_name, version, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake id and version # 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_notebook_by_datalake_id_and_version_with_http_info(authorization, datalake_id, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_id', 'notebook_name', 'version'] # 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_notebook_by_datalake_id_and_version" % 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_notebook_by_datalake_id_and_version`") # noqa: E501 # verify the required parameter 'datalake_id' is set if ('datalake_id' not in params or params['datalake_id'] is None): raise ValueError("Missing the required parameter `datalake_id` when calling `get_notebook_by_datalake_id_and_version`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `get_notebook_by_datalake_id_and_version`") # noqa: E501 # verify the required parameter 'version' is set if ('version' not in params or params['version'] is None): raise ValueError("Missing the required parameter `version` when calling `get_notebook_by_datalake_id_and_version`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_id' in params: path_params['datalakeId'] = params['datalake_id'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_name'] # noqa: E501 if 'version' in params: path_params['version'] = params['version'] # 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/notebooks/datalakeId/{datalakeId}/{notebookName}/{version}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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_notebook_by_datalake_name(self, authorization, datalake_name, notebook_name, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake name with the latest version # 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_notebook_by_datalake_name(authorization, datalake_name, notebook_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, **kwargs) # noqa: E501 else: (data) = self.get_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, **kwargs) # noqa: E501 return data def get_notebook_by_datalake_name_with_http_info(self, authorization, datalake_name, notebook_name, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake name with the latest version # 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_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_name', 'notebook_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_notebook_by_datalake_name" % 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_notebook_by_datalake_name`") # noqa: E501 # verify the required parameter 'datalake_name' is set if ('datalake_name' not in params or params['datalake_name'] is None): raise ValueError("Missing the required parameter `datalake_name` when calling `get_notebook_by_datalake_name`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `get_notebook_by_datalake_name`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_name' in params: path_params['datalakeName'] = params['datalake_name'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_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/notebooks/datalakeName/{datalakeName}/{notebookName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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_notebook_by_datalake_name_and_version(self, authorization, datalake_name, notebook_name, version, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake and version # 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_notebook_by_datalake_name_and_version(authorization, datalake_name, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_notebook_by_datalake_name_and_version_with_http_info(authorization, datalake_name, notebook_name, version, **kwargs) # noqa: E501 else: (data) = self.get_notebook_by_datalake_name_and_version_with_http_info(authorization, datalake_name, notebook_name, version, **kwargs) # noqa: E501 return data def get_notebook_by_datalake_name_and_version_with_http_info(self, authorization, datalake_name, notebook_name, version, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake and version # 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_notebook_by_datalake_name_and_version_with_http_info(authorization, datalake_name, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_name', 'notebook_name', 'version'] # 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_notebook_by_datalake_name_and_version" % 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_notebook_by_datalake_name_and_version`") # noqa: E501 # verify the required parameter 'datalake_name' is set if ('datalake_name' not in params or params['datalake_name'] is None): raise ValueError("Missing the required parameter `datalake_name` when calling `get_notebook_by_datalake_name_and_version`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `get_notebook_by_datalake_name_and_version`") # noqa: E501 # verify the required parameter 'version' is set if ('version' not in params or params['version'] is None): raise ValueError("Missing the required parameter `version` when calling `get_notebook_by_datalake_name_and_version`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_name' in params: path_params['datalakeName'] = params['datalake_name'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_name'] # noqa: E501 if 'version' in params: path_params['version'] = params['version'] # 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/notebooks/datalakeName/{datalakeName}/{notebookName}/{version}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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_notebook(self, body, authorization, **kwargs): # noqa: E501 """Update a notebook # 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_notebook(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Notebook body: notebook (required) :param str authorization: Authorization (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.update_notebook_with_http_info(body, authorization, **kwargs) # noqa: E501 else: (data) = self.update_notebook_with_http_info(body, authorization, **kwargs) # noqa: E501 return data def update_notebook_with_http_info(self, body, authorization, **kwargs): # noqa: E501 """Update a notebook # 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_notebook_with_http_info(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Notebook body: notebook (required) :param str authorization: Authorization (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method update_notebook" % 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_notebook`") # 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_notebook`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/notebooks/', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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)
- NotebooksPublicApiControllerApi
- 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_notebook(
self, body, authorization, **kwargs)
Create a notebook # 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_notebook(body, authorization, async_req=True) result = thread.get()
:param async_req bool :param Notebook body: notebook (required) :param str authorization: Authorization (required) :return: Notebook If the method is called asynchronously, returns the request thread.
def create_notebook(self, body, authorization, **kwargs): # noqa: E501 """Create a notebook # 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_notebook(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Notebook body: notebook (required) :param str authorization: Authorization (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.create_notebook_with_http_info(body, authorization, **kwargs) # noqa: E501 else: (data) = self.create_notebook_with_http_info(body, authorization, **kwargs) # noqa: E501 return data
def create_notebook_with_http_info(
self, body, authorization, **kwargs)
Create a notebook # 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_notebook_with_http_info(body, authorization, async_req=True) result = thread.get()
:param async_req bool :param Notebook body: notebook (required) :param str authorization: Authorization (required) :return: Notebook If the method is called asynchronously, returns the request thread.
def create_notebook_with_http_info(self, body, authorization, **kwargs): # noqa: E501 """Create a notebook # 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_notebook_with_http_info(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Notebook body: notebook (required) :param str authorization: Authorization (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method create_notebook" % 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_notebook`") # 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_notebook`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/notebooks/', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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_notebook_by_datalake_id(
self, authorization, datalake_id, notebook_name, version, **kwargs)
Delete a notebook # 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_notebook_by_datalake_id(authorization, datalake_id, notebook_name, version, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: None If the method is called asynchronously, returns the request thread.
def delete_notebook_by_datalake_id(self, authorization, datalake_id, notebook_name, version, **kwargs): # noqa: E501 """Delete a notebook # 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_notebook_by_datalake_id(authorization, datalake_id, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :param int version: version (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_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, version, **kwargs) # noqa: E501 else: (data) = self.delete_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, version, **kwargs) # noqa: E501 return data
def delete_notebook_by_datalake_id_with_http_info(
self, authorization, datalake_id, notebook_name, version, **kwargs)
Delete a notebook # 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_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, version, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: None If the method is called asynchronously, returns the request thread.
def delete_notebook_by_datalake_id_with_http_info(self, authorization, datalake_id, notebook_name, version, **kwargs): # noqa: E501 """Delete a notebook # 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_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: None If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_id', 'notebook_name', 'version'] # 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_notebook_by_datalake_id" % 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_notebook_by_datalake_id`") # noqa: E501 # verify the required parameter 'datalake_id' is set if ('datalake_id' not in params or params['datalake_id'] is None): raise ValueError("Missing the required parameter `datalake_id` when calling `delete_notebook_by_datalake_id`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `delete_notebook_by_datalake_id`") # noqa: E501 # verify the required parameter 'version' is set if ('version' not in params or params['version'] is None): raise ValueError("Missing the required parameter `version` when calling `delete_notebook_by_datalake_id`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_id' in params: path_params['datalakeId'] = params['datalake_id'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_name'] # noqa: E501 if 'version' in params: path_params['version'] = params['version'] # 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/notebooks/datalakeId/{datalakeId}/{notebookName}/{version}', '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_notebook_by_datalake_name(
self, authorization, datalake_name, notebook_name, version, **kwargs)
Delete a notebook # 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_notebook_by_datalake_name(authorization, datalake_name, notebook_name, version, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: None If the method is called asynchronously, returns the request thread.
def delete_notebook_by_datalake_name(self, authorization, datalake_name, notebook_name, version, **kwargs): # noqa: E501 """Delete a notebook # 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_notebook_by_datalake_name(authorization, datalake_name, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :param int version: version (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_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, version, **kwargs) # noqa: E501 else: (data) = self.delete_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, version, **kwargs) # noqa: E501 return data
def delete_notebook_by_datalake_name_with_http_info(
self, authorization, datalake_name, notebook_name, version, **kwargs)
Delete a notebook # 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_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, version, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: None If the method is called asynchronously, returns the request thread.
def delete_notebook_by_datalake_name_with_http_info(self, authorization, datalake_name, notebook_name, version, **kwargs): # noqa: E501 """Delete a notebook # 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_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: None If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_name', 'notebook_name', 'version'] # 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_notebook_by_datalake_name" % 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_notebook_by_datalake_name`") # noqa: E501 # verify the required parameter 'datalake_name' is set if ('datalake_name' not in params or params['datalake_name'] is None): raise ValueError("Missing the required parameter `datalake_name` when calling `delete_notebook_by_datalake_name`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `delete_notebook_by_datalake_name`") # noqa: E501 # verify the required parameter 'version' is set if ('version' not in params or params['version'] is None): raise ValueError("Missing the required parameter `version` when calling `delete_notebook_by_datalake_name`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_name' in params: path_params['datalakeName'] = params['datalake_name'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_name'] # noqa: E501 if 'version' in params: path_params['version'] = params['version'] # 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/notebooks/datalakeName/{datalakeName}/{notebookName}/{version}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type=None, # noqa: E501 auth_settings=auth_settings, async_req=params.get('async_req'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats)
def get_all_notebooks(
self, authorization, **kwargs)
Get all notebooks 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_notebooks(authorization, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :return: dict(str, list[Notebook]) If the method is called asynchronously, returns the request thread.
def get_all_notebooks(self, authorization, **kwargs): # noqa: E501 """Get all notebooks 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_notebooks(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: dict(str, list[Notebook]) 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_notebooks_with_http_info(authorization, **kwargs) # noqa: E501 else: (data) = self.get_all_notebooks_with_http_info(authorization, **kwargs) # noqa: E501 return data
def get_all_notebooks_by_datalake_id(
self, authorization, datalake_id, **kwargs)
Get all notebooks in a datalake by datalake id # 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_notebooks_by_datalake_id(authorization, datalake_id, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :return: list[Notebook] If the method is called asynchronously, returns the request thread.
def get_all_notebooks_by_datalake_id(self, authorization, datalake_id, **kwargs): # noqa: E501 """Get all notebooks in a datalake by datalake id # 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_notebooks_by_datalake_id(authorization, datalake_id, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :return: list[Notebook] 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_notebooks_by_datalake_id_with_http_info(authorization, datalake_id, **kwargs) # noqa: E501 else: (data) = self.get_all_notebooks_by_datalake_id_with_http_info(authorization, datalake_id, **kwargs) # noqa: E501 return data
def get_all_notebooks_by_datalake_id_with_http_info(
self, authorization, datalake_id, **kwargs)
Get all notebooks in a datalake by datalake id # 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_notebooks_by_datalake_id_with_http_info(authorization, datalake_id, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :return: list[Notebook] If the method is called asynchronously, returns the request thread.
def get_all_notebooks_by_datalake_id_with_http_info(self, authorization, datalake_id, **kwargs): # noqa: E501 """Get all notebooks in a datalake by datalake id # 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_notebooks_by_datalake_id_with_http_info(authorization, datalake_id, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :return: list[Notebook] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_id'] # 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_notebooks_by_datalake_id" % 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_notebooks_by_datalake_id`") # noqa: E501 # verify the required parameter 'datalake_id' is set if ('datalake_id' not in params or params['datalake_id'] is None): raise ValueError("Missing the required parameter `datalake_id` when calling `get_all_notebooks_by_datalake_id`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_id' in params: path_params['datalakeId'] = params['datalake_id'] # 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/notebooks/datalakeId/{datalakeId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Notebook]', # 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_notebooks_by_datalake_name(
self, authorization, datalake_name, **kwargs)
Get all notebooks in a datalake by datalake 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_all_notebooks_by_datalake_name(authorization, datalake_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :return: list[Notebook] If the method is called asynchronously, returns the request thread.
def get_all_notebooks_by_datalake_name(self, authorization, datalake_name, **kwargs): # noqa: E501 """Get all notebooks in a datalake by datalake 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_all_notebooks_by_datalake_name(authorization, datalake_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :return: list[Notebook] 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_notebooks_by_datalake_name_with_http_info(authorization, datalake_name, **kwargs) # noqa: E501 else: (data) = self.get_all_notebooks_by_datalake_name_with_http_info(authorization, datalake_name, **kwargs) # noqa: E501 return data
def get_all_notebooks_by_datalake_name_with_http_info(
self, authorization, datalake_name, **kwargs)
Get all notebooks in a datalake by datalake 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_all_notebooks_by_datalake_name_with_http_info(authorization, datalake_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :return: list[Notebook] If the method is called asynchronously, returns the request thread.
def get_all_notebooks_by_datalake_name_with_http_info(self, authorization, datalake_name, **kwargs): # noqa: E501 """Get all notebooks in a datalake by datalake 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_all_notebooks_by_datalake_name_with_http_info(authorization, datalake_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :return: list[Notebook] If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_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_notebooks_by_datalake_name" % 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_notebooks_by_datalake_name`") # noqa: E501 # verify the required parameter 'datalake_name' is set if ('datalake_name' not in params or params['datalake_name'] is None): raise ValueError("Missing the required parameter `datalake_name` when calling `get_all_notebooks_by_datalake_name`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_name' in params: path_params['datalakeName'] = params['datalake_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/notebooks/datalakeName/{datalakeName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Notebook]', # 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_notebooks_with_http_info(
self, authorization, **kwargs)
Get all notebooks 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_notebooks_with_http_info(authorization, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :return: dict(str, list[Notebook]) If the method is called asynchronously, returns the request thread.
def get_all_notebooks_with_http_info(self, authorization, **kwargs): # noqa: E501 """Get all notebooks 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_notebooks_with_http_info(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: dict(str, list[Notebook]) 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_notebooks" % 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_notebooks`") # 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/notebooks/', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='dict(str, list[Notebook])', # 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_notebook_by_datalake_id(
self, authorization, datalake_id, notebook_name, **kwargs)
Get a notebook by notebook name and datalake id with the latest version # 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_notebook_by_datalake_id(authorization, datalake_id, notebook_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :return: Notebook If the method is called asynchronously, returns the request thread.
def get_notebook_by_datalake_id(self, authorization, datalake_id, notebook_name, **kwargs): # noqa: E501 """Get a notebook by notebook name and datalake id with the latest version # 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_notebook_by_datalake_id(authorization, datalake_id, notebook_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, **kwargs) # noqa: E501 else: (data) = self.get_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, **kwargs) # noqa: E501 return data
def get_notebook_by_datalake_id_and_version(
self, authorization, datalake_id, notebook_name, version, **kwargs)
Get a notebook by notebook name, datalake id and version # 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_notebook_by_datalake_id_and_version(authorization, datalake_id, notebook_name, version, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: Notebook If the method is called asynchronously, returns the request thread.
def get_notebook_by_datalake_id_and_version(self, authorization, datalake_id, notebook_name, version, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake id and version # 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_notebook_by_datalake_id_and_version(authorization, datalake_id, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_notebook_by_datalake_id_and_version_with_http_info(authorization, datalake_id, notebook_name, version, **kwargs) # noqa: E501 else: (data) = self.get_notebook_by_datalake_id_and_version_with_http_info(authorization, datalake_id, notebook_name, version, **kwargs) # noqa: E501 return data
def get_notebook_by_datalake_id_and_version_with_http_info(
self, authorization, datalake_id, notebook_name, version, **kwargs)
Get a notebook by notebook name, datalake id and version # 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_notebook_by_datalake_id_and_version_with_http_info(authorization, datalake_id, notebook_name, version, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: Notebook If the method is called asynchronously, returns the request thread.
def get_notebook_by_datalake_id_and_version_with_http_info(self, authorization, datalake_id, notebook_name, version, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake id and version # 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_notebook_by_datalake_id_and_version_with_http_info(authorization, datalake_id, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_id', 'notebook_name', 'version'] # 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_notebook_by_datalake_id_and_version" % 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_notebook_by_datalake_id_and_version`") # noqa: E501 # verify the required parameter 'datalake_id' is set if ('datalake_id' not in params or params['datalake_id'] is None): raise ValueError("Missing the required parameter `datalake_id` when calling `get_notebook_by_datalake_id_and_version`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `get_notebook_by_datalake_id_and_version`") # noqa: E501 # verify the required parameter 'version' is set if ('version' not in params or params['version'] is None): raise ValueError("Missing the required parameter `version` when calling `get_notebook_by_datalake_id_and_version`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_id' in params: path_params['datalakeId'] = params['datalake_id'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_name'] # noqa: E501 if 'version' in params: path_params['version'] = params['version'] # 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/notebooks/datalakeId/{datalakeId}/{notebookName}/{version}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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_notebook_by_datalake_id_with_http_info(
self, authorization, datalake_id, notebook_name, **kwargs)
Get a notebook by notebook name and datalake id with the latest version # 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_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :return: Notebook If the method is called asynchronously, returns the request thread.
def get_notebook_by_datalake_id_with_http_info(self, authorization, datalake_id, notebook_name, **kwargs): # noqa: E501 """Get a notebook by notebook name and datalake id with the latest version # 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_notebook_by_datalake_id_with_http_info(authorization, datalake_id, notebook_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param int datalake_id: datalakeId (required) :param str notebook_name: notebookName (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_id', 'notebook_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_notebook_by_datalake_id" % 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_notebook_by_datalake_id`") # noqa: E501 # verify the required parameter 'datalake_id' is set if ('datalake_id' not in params or params['datalake_id'] is None): raise ValueError("Missing the required parameter `datalake_id` when calling `get_notebook_by_datalake_id`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `get_notebook_by_datalake_id`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_id' in params: path_params['datalakeId'] = params['datalake_id'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_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/notebooks/datalakeId/{datalakeId}/{notebookName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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_notebook_by_datalake_name(
self, authorization, datalake_name, notebook_name, **kwargs)
Get a notebook by notebook name, datalake name with the latest version # 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_notebook_by_datalake_name(authorization, datalake_name, notebook_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :return: Notebook If the method is called asynchronously, returns the request thread.
def get_notebook_by_datalake_name(self, authorization, datalake_name, notebook_name, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake name with the latest version # 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_notebook_by_datalake_name(authorization, datalake_name, notebook_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, **kwargs) # noqa: E501 else: (data) = self.get_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, **kwargs) # noqa: E501 return data
def get_notebook_by_datalake_name_and_version(
self, authorization, datalake_name, notebook_name, version, **kwargs)
Get a notebook by notebook name, datalake and version # 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_notebook_by_datalake_name_and_version(authorization, datalake_name, notebook_name, version, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: Notebook If the method is called asynchronously, returns the request thread.
def get_notebook_by_datalake_name_and_version(self, authorization, datalake_name, notebook_name, version, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake and version # 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_notebook_by_datalake_name_and_version(authorization, datalake_name, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_notebook_by_datalake_name_and_version_with_http_info(authorization, datalake_name, notebook_name, version, **kwargs) # noqa: E501 else: (data) = self.get_notebook_by_datalake_name_and_version_with_http_info(authorization, datalake_name, notebook_name, version, **kwargs) # noqa: E501 return data
def get_notebook_by_datalake_name_and_version_with_http_info(
self, authorization, datalake_name, notebook_name, version, **kwargs)
Get a notebook by notebook name, datalake and version # 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_notebook_by_datalake_name_and_version_with_http_info(authorization, datalake_name, notebook_name, version, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: Notebook If the method is called asynchronously, returns the request thread.
def get_notebook_by_datalake_name_and_version_with_http_info(self, authorization, datalake_name, notebook_name, version, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake and version # 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_notebook_by_datalake_name_and_version_with_http_info(authorization, datalake_name, notebook_name, version, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :param int version: version (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_name', 'notebook_name', 'version'] # 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_notebook_by_datalake_name_and_version" % 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_notebook_by_datalake_name_and_version`") # noqa: E501 # verify the required parameter 'datalake_name' is set if ('datalake_name' not in params or params['datalake_name'] is None): raise ValueError("Missing the required parameter `datalake_name` when calling `get_notebook_by_datalake_name_and_version`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `get_notebook_by_datalake_name_and_version`") # noqa: E501 # verify the required parameter 'version' is set if ('version' not in params or params['version'] is None): raise ValueError("Missing the required parameter `version` when calling `get_notebook_by_datalake_name_and_version`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_name' in params: path_params['datalakeName'] = params['datalake_name'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_name'] # noqa: E501 if 'version' in params: path_params['version'] = params['version'] # 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/notebooks/datalakeName/{datalakeName}/{notebookName}/{version}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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_notebook_by_datalake_name_with_http_info(
self, authorization, datalake_name, notebook_name, **kwargs)
Get a notebook by notebook name, datalake name with the latest version # 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_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :return: Notebook If the method is called asynchronously, returns the request thread.
def get_notebook_by_datalake_name_with_http_info(self, authorization, datalake_name, notebook_name, **kwargs): # noqa: E501 """Get a notebook by notebook name, datalake name with the latest version # 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_notebook_by_datalake_name_with_http_info(authorization, datalake_name, notebook_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str datalake_name: datalakeName (required) :param str notebook_name: notebookName (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'datalake_name', 'notebook_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_notebook_by_datalake_name" % 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_notebook_by_datalake_name`") # noqa: E501 # verify the required parameter 'datalake_name' is set if ('datalake_name' not in params or params['datalake_name'] is None): raise ValueError("Missing the required parameter `datalake_name` when calling `get_notebook_by_datalake_name`") # noqa: E501 # verify the required parameter 'notebook_name' is set if ('notebook_name' not in params or params['notebook_name'] is None): raise ValueError("Missing the required parameter `notebook_name` when calling `get_notebook_by_datalake_name`") # noqa: E501 collection_formats = {} path_params = {} if 'datalake_name' in params: path_params['datalakeName'] = params['datalake_name'] # noqa: E501 if 'notebook_name' in params: path_params['notebookName'] = params['notebook_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/notebooks/datalakeName/{datalakeName}/{notebookName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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_notebook(
self, body, authorization, **kwargs)
Update a notebook # 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_notebook(body, authorization, async_req=True) result = thread.get()
:param async_req bool :param Notebook body: notebook (required) :param str authorization: Authorization (required) :return: Notebook If the method is called asynchronously, returns the request thread.
def update_notebook(self, body, authorization, **kwargs): # noqa: E501 """Update a notebook # 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_notebook(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Notebook body: notebook (required) :param str authorization: Authorization (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.update_notebook_with_http_info(body, authorization, **kwargs) # noqa: E501 else: (data) = self.update_notebook_with_http_info(body, authorization, **kwargs) # noqa: E501 return data
def update_notebook_with_http_info(
self, body, authorization, **kwargs)
Update a notebook # 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_notebook_with_http_info(body, authorization, async_req=True) result = thread.get()
:param async_req bool :param Notebook body: notebook (required) :param str authorization: Authorization (required) :return: Notebook If the method is called asynchronously, returns the request thread.
def update_notebook_with_http_info(self, body, authorization, **kwargs): # noqa: E501 """Update a notebook # 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_notebook_with_http_info(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Notebook body: notebook (required) :param str authorization: Authorization (required) :return: Notebook If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method update_notebook" % 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_notebook`") # 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_notebook`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/notebooks/', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Notebook', # 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