# coding: utf-8 """ api/v2/activity_service.proto No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501 OpenAPI spec version: version not set Generated by: https://github.com/swagger-api/swagger-codegen.git """ from __future__ import absolute_import import re # noqa: F401 # python 2 and python 3 compatibility library import six from memos.api_client import ApiClient class ResourceServiceApi(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. Ref: https://github.com/swagger-api/swagger-codegen """ def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client def resource_service_create_resource(self, **kwargs): # noqa: E501 """CreateResource creates a new resource. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.resource_service_create_resource(async_req=True) >>> result = thread.get() :param async_req bool :param str filename: :param str external_link: :param str type: :param int memo_id: :return: V2CreateResourceResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.resource_service_create_resource_with_http_info(**kwargs) # noqa: E501 else: (data) = self.resource_service_create_resource_with_http_info(**kwargs) # noqa: E501 return data def resource_service_create_resource_with_http_info(self, **kwargs): # noqa: E501 """CreateResource creates a new resource. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.resource_service_create_resource_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool :param str filename: :param str external_link: :param str type: :param int memo_id: :return: V2CreateResourceResponse If the method is called asynchronously, returns the request thread. """ all_params = ['filename', 'external_link', 'type', 'memo_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 resource_service_create_resource" % key ) params[key] = val del params['kwargs'] collection_formats = {} path_params = {} query_params = [] if 'filename' in params: query_params.append(('filename', params['filename'])) # noqa: E501 if 'external_link' in params: query_params.append(('externalLink', params['external_link'])) # noqa: E501 if 'type' in params: query_params.append(('type', params['type'])) # noqa: E501 if 'memo_id' in params: query_params.append(('memoId', params['memo_id'])) # noqa: E501 header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v2/resources', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='V2CreateResourceResponse', # 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 resource_service_delete_resource(self, id, **kwargs): # noqa: E501 """DeleteResource deletes a resource by 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.resource_service_delete_resource(id, async_req=True) >>> result = thread.get() :param async_req bool :param int id: (required) :return: V2DeleteResourceResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.resource_service_delete_resource_with_http_info(id, **kwargs) # noqa: E501 else: (data) = self.resource_service_delete_resource_with_http_info(id, **kwargs) # noqa: E501 return data def resource_service_delete_resource_with_http_info(self, id, **kwargs): # noqa: E501 """DeleteResource deletes a resource by 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.resource_service_delete_resource_with_http_info(id, async_req=True) >>> result = thread.get() :param async_req bool :param int id: (required) :return: V2DeleteResourceResponse If the method is called asynchronously, returns the request thread. """ all_params = ['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 resource_service_delete_resource" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'id' is set if ('id' not in params or params['id'] is None): raise ValueError("Missing the required parameter `id` when calling `resource_service_delete_resource`") # noqa: E501 collection_formats = {} path_params = {} if 'id' in params: path_params['id'] = params['id'] # noqa: E501 query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v2/resources/{id}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='V2DeleteResourceResponse', # 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 resource_service_get_resource(self, id, **kwargs): # noqa: E501 """GetResource returns a resource by 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.resource_service_get_resource(id, async_req=True) >>> result = thread.get() :param async_req bool :param int id: (required) :return: V2GetResourceResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.resource_service_get_resource_with_http_info(id, **kwargs) # noqa: E501 else: (data) = self.resource_service_get_resource_with_http_info(id, **kwargs) # noqa: E501 return data def resource_service_get_resource_with_http_info(self, id, **kwargs): # noqa: E501 """GetResource returns a resource by 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.resource_service_get_resource_with_http_info(id, async_req=True) >>> result = thread.get() :param async_req bool :param int id: (required) :return: V2GetResourceResponse If the method is called asynchronously, returns the request thread. """ all_params = ['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 resource_service_get_resource" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'id' is set if ('id' not in params or params['id'] is None): raise ValueError("Missing the required parameter `id` when calling `resource_service_get_resource`") # noqa: E501 collection_formats = {} path_params = {} if 'id' in params: path_params['id'] = params['id'] # noqa: E501 query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v2/resources/{id}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='V2GetResourceResponse', # 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 resource_service_get_resource_by_name(self, name, **kwargs): # noqa: E501 """GetResourceByName returns a resource by name. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.resource_service_get_resource_by_name(name, async_req=True) >>> result = thread.get() :param async_req bool :param str name: (required) :return: V2GetResourceByNameResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.resource_service_get_resource_by_name_with_http_info(name, **kwargs) # noqa: E501 else: (data) = self.resource_service_get_resource_by_name_with_http_info(name, **kwargs) # noqa: E501 return data def resource_service_get_resource_by_name_with_http_info(self, name, **kwargs): # noqa: E501 """GetResourceByName returns a resource by name. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.resource_service_get_resource_by_name_with_http_info(name, async_req=True) >>> result = thread.get() :param async_req bool :param str name: (required) :return: V2GetResourceByNameResponse If the method is called asynchronously, returns the request thread. """ all_params = ['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 resource_service_get_resource_by_name" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'name' is set if ('name' not in params or params['name'] is None): raise ValueError("Missing the required parameter `name` when calling `resource_service_get_resource_by_name`") # noqa: E501 collection_formats = {} path_params = {} if 'name' in params: path_params['name'] = params['name'] # noqa: E501 query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v2/resources/name/{name}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='V2GetResourceByNameResponse', # 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 resource_service_list_resources(self, **kwargs): # noqa: E501 """ListResources lists all resources. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.resource_service_list_resources(async_req=True) >>> result = thread.get() :param async_req bool :return: V2ListResourcesResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.resource_service_list_resources_with_http_info(**kwargs) # noqa: E501 else: (data) = self.resource_service_list_resources_with_http_info(**kwargs) # noqa: E501 return data def resource_service_list_resources_with_http_info(self, **kwargs): # noqa: E501 """ListResources lists all resources. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.resource_service_list_resources_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool :return: V2ListResourcesResponse If the method is called asynchronously, returns the request thread. """ all_params = [] # 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 resource_service_list_resources" % key ) params[key] = val del params['kwargs'] collection_formats = {} path_params = {} query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v2/resources', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='V2ListResourcesResponse', # 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 resource_service_update_resource(self, body, resource_id, **kwargs): # noqa: E501 """UpdateResource updates a resource. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.resource_service_update_resource(body, resource_id, async_req=True) >>> result = thread.get() :param async_req bool :param ResourcesResourceIdBody body: (required) :param int resource_id: id is the system generated unique identifier. (required) :return: V2UpdateResourceResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.resource_service_update_resource_with_http_info(body, resource_id, **kwargs) # noqa: E501 else: (data) = self.resource_service_update_resource_with_http_info(body, resource_id, **kwargs) # noqa: E501 return data def resource_service_update_resource_with_http_info(self, body, resource_id, **kwargs): # noqa: E501 """UpdateResource updates a resource. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.resource_service_update_resource_with_http_info(body, resource_id, async_req=True) >>> result = thread.get() :param async_req bool :param ResourcesResourceIdBody body: (required) :param int resource_id: id is the system generated unique identifier. (required) :return: V2UpdateResourceResponse If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'resource_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 resource_service_update_resource" % 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 `resource_service_update_resource`") # noqa: E501 # verify the required parameter 'resource_id' is set if ('resource_id' not in params or params['resource_id'] is None): raise ValueError("Missing the required parameter `resource_id` when calling `resource_service_update_resource`") # noqa: E501 collection_formats = {} path_params = {} if 'resource_id' in params: path_params['resource.id'] = params['resource_id'] # noqa: E501 query_params = [] header_params = {} 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( ['application/json']) # 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/v2/resources/{resource.id}', 'PATCH', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='V2UpdateResourceResponse', # 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)