lentiq.api.credentials_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 CredentialsPublicApiControllerApi(object): """ Ref: """ def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client def create_credential(self, body, authorization, **kwargs): # noqa: E501 """Create new credential. # 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_credential(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Credential body: credential (required) :param str authorization: Authorization (required) :return: Credential If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.create_credential_with_http_info(body, authorization, **kwargs) # noqa: E501 else: (data) = self.create_credential_with_http_info(body, authorization, **kwargs) # noqa: E501 return data def create_credential_with_http_info(self, body, authorization, **kwargs): # noqa: E501 """Create new credential. # 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_credential_with_http_info(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Credential body: credential (required) :param str authorization: Authorization (required) :return: Credential 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_credential" % 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_credential`") # 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_credential`") # 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/credentials', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Credential', # 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_credential(self, authorization, credential_name, **kwargs): # noqa: E501 """Delete credential 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.delete_credential(authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str credential_name: credentialName (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_credential_with_http_info(authorization, credential_name, **kwargs) # noqa: E501 else: (data) = self.delete_credential_with_http_info(authorization, credential_name, **kwargs) # noqa: E501 return data def delete_credential_with_http_info(self, authorization, credential_name, **kwargs): # noqa: E501 """Delete credential 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.delete_credential_with_http_info(authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: None If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'credential_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method delete_credential" % 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_credential`") # noqa: E501 # verify the required parameter 'credential_name' is set if ('credential_name' not in params or params['credential_name'] is None): raise ValueError("Missing the required parameter `credential_name` when calling `delete_credential`") # noqa: E501 collection_formats = {} path_params = {} if 'credential_name' in params: path_params['credentialName'] = params['credential_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/credentials/{credentialName}', '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_credentials_for_user(self, authorization, **kwargs): # noqa: E501 """Get all credentials for user. # 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_credentials_for_user(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: list[Credential] 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_credentials_for_user_with_http_info(authorization, **kwargs) # noqa: E501 else: (data) = self.get_all_credentials_for_user_with_http_info(authorization, **kwargs) # noqa: E501 return data def get_all_credentials_for_user_with_http_info(self, authorization, **kwargs): # noqa: E501 """Get all credentials for user. # 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_credentials_for_user_with_http_info(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: list[Credential] 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_credentials_for_user" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `get_all_credentials_for_user`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/credentials', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Credential]', # 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_credential(self, authorization, credential_name, **kwargs): # noqa: E501 """Get credential by name. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_credential(authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: Credential If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_credential_with_http_info(authorization, credential_name, **kwargs) # noqa: E501 else: (data) = self.get_credential_with_http_info(authorization, credential_name, **kwargs) # noqa: E501 return data def get_credential_with_http_info(self, authorization, credential_name, **kwargs): # noqa: E501 """Get credential by name. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_credential_with_http_info(authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: Credential If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'credential_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_credential" % 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_credential`") # noqa: E501 # verify the required parameter 'credential_name' is set if ('credential_name' not in params or params['credential_name'] is None): raise ValueError("Missing the required parameter `credential_name` when calling `get_credential`") # noqa: E501 collection_formats = {} path_params = {} if 'credential_name' in params: path_params['credentialName'] = params['credential_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/credentials/{credentialName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Credential', # 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_credential(self, body, authorization, credential_name, **kwargs): # noqa: E501 """Update credential. # 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_credential(body, authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param InfrastructureProviderCredentials body: infrastructureProviderCredentials (required) :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: Credential If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.update_credential_with_http_info(body, authorization, credential_name, **kwargs) # noqa: E501 else: (data) = self.update_credential_with_http_info(body, authorization, credential_name, **kwargs) # noqa: E501 return data def update_credential_with_http_info(self, body, authorization, credential_name, **kwargs): # noqa: E501 """Update credential. # 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_credential_with_http_info(body, authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param InfrastructureProviderCredentials body: infrastructureProviderCredentials (required) :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: Credential If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization', 'credential_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method update_credential" % 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_credential`") # 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_credential`") # noqa: E501 # verify the required parameter 'credential_name' is set if ('credential_name' not in params or params['credential_name'] is None): raise ValueError("Missing the required parameter `credential_name` when calling `update_credential`") # noqa: E501 collection_formats = {} path_params = {} if 'credential_name' in params: path_params['credentialName'] = params['credential_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/credentials/{credentialName}/credentials', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Credential', # 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 CredentialsPublicApiControllerApi
Ref:
class CredentialsPublicApiControllerApi(object): """ Ref: """ def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client def create_credential(self, body, authorization, **kwargs): # noqa: E501 """Create new credential. # 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_credential(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Credential body: credential (required) :param str authorization: Authorization (required) :return: Credential If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.create_credential_with_http_info(body, authorization, **kwargs) # noqa: E501 else: (data) = self.create_credential_with_http_info(body, authorization, **kwargs) # noqa: E501 return data def create_credential_with_http_info(self, body, authorization, **kwargs): # noqa: E501 """Create new credential. # 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_credential_with_http_info(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Credential body: credential (required) :param str authorization: Authorization (required) :return: Credential 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_credential" % 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_credential`") # 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_credential`") # 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/credentials', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Credential', # 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_credential(self, authorization, credential_name, **kwargs): # noqa: E501 """Delete credential 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.delete_credential(authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str credential_name: credentialName (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_credential_with_http_info(authorization, credential_name, **kwargs) # noqa: E501 else: (data) = self.delete_credential_with_http_info(authorization, credential_name, **kwargs) # noqa: E501 return data def delete_credential_with_http_info(self, authorization, credential_name, **kwargs): # noqa: E501 """Delete credential 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.delete_credential_with_http_info(authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: None If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'credential_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method delete_credential" % 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_credential`") # noqa: E501 # verify the required parameter 'credential_name' is set if ('credential_name' not in params or params['credential_name'] is None): raise ValueError("Missing the required parameter `credential_name` when calling `delete_credential`") # noqa: E501 collection_formats = {} path_params = {} if 'credential_name' in params: path_params['credentialName'] = params['credential_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/credentials/{credentialName}', '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_credentials_for_user(self, authorization, **kwargs): # noqa: E501 """Get all credentials for user. # 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_credentials_for_user(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: list[Credential] 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_credentials_for_user_with_http_info(authorization, **kwargs) # noqa: E501 else: (data) = self.get_all_credentials_for_user_with_http_info(authorization, **kwargs) # noqa: E501 return data def get_all_credentials_for_user_with_http_info(self, authorization, **kwargs): # noqa: E501 """Get all credentials for user. # 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_credentials_for_user_with_http_info(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: list[Credential] 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_credentials_for_user" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `get_all_credentials_for_user`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/credentials', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Credential]', # 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_credential(self, authorization, credential_name, **kwargs): # noqa: E501 """Get credential by name. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_credential(authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: Credential If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_credential_with_http_info(authorization, credential_name, **kwargs) # noqa: E501 else: (data) = self.get_credential_with_http_info(authorization, credential_name, **kwargs) # noqa: E501 return data def get_credential_with_http_info(self, authorization, credential_name, **kwargs): # noqa: E501 """Get credential by name. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_credential_with_http_info(authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: Credential If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'credential_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_credential" % 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_credential`") # noqa: E501 # verify the required parameter 'credential_name' is set if ('credential_name' not in params or params['credential_name'] is None): raise ValueError("Missing the required parameter `credential_name` when calling `get_credential`") # noqa: E501 collection_formats = {} path_params = {} if 'credential_name' in params: path_params['credentialName'] = params['credential_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/credentials/{credentialName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Credential', # 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_credential(self, body, authorization, credential_name, **kwargs): # noqa: E501 """Update credential. # 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_credential(body, authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param InfrastructureProviderCredentials body: infrastructureProviderCredentials (required) :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: Credential If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.update_credential_with_http_info(body, authorization, credential_name, **kwargs) # noqa: E501 else: (data) = self.update_credential_with_http_info(body, authorization, credential_name, **kwargs) # noqa: E501 return data def update_credential_with_http_info(self, body, authorization, credential_name, **kwargs): # noqa: E501 """Update credential. # 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_credential_with_http_info(body, authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param InfrastructureProviderCredentials body: infrastructureProviderCredentials (required) :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: Credential If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization', 'credential_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method update_credential" % 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_credential`") # 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_credential`") # noqa: E501 # verify the required parameter 'credential_name' is set if ('credential_name' not in params or params['credential_name'] is None): raise ValueError("Missing the required parameter `credential_name` when calling `update_credential`") # noqa: E501 collection_formats = {} path_params = {} if 'credential_name' in params: path_params['credentialName'] = params['credential_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/credentials/{credentialName}/credentials', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Credential', # 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)
- CredentialsPublicApiControllerApi
- 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_credential(
self, body, authorization, **kwargs)
Create new credential. # 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_credential(body, authorization, async_req=True) result = thread.get()
:param async_req bool :param Credential body: credential (required) :param str authorization: Authorization (required) :return: Credential If the method is called asynchronously, returns the request thread.
def create_credential(self, body, authorization, **kwargs): # noqa: E501 """Create new credential. # 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_credential(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Credential body: credential (required) :param str authorization: Authorization (required) :return: Credential If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.create_credential_with_http_info(body, authorization, **kwargs) # noqa: E501 else: (data) = self.create_credential_with_http_info(body, authorization, **kwargs) # noqa: E501 return data
def create_credential_with_http_info(
self, body, authorization, **kwargs)
Create new credential. # 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_credential_with_http_info(body, authorization, async_req=True) result = thread.get()
:param async_req bool :param Credential body: credential (required) :param str authorization: Authorization (required) :return: Credential If the method is called asynchronously, returns the request thread.
def create_credential_with_http_info(self, body, authorization, **kwargs): # noqa: E501 """Create new credential. # 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_credential_with_http_info(body, authorization, async_req=True) >>> result = thread.get() :param async_req bool :param Credential body: credential (required) :param str authorization: Authorization (required) :return: Credential 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_credential" % 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_credential`") # 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_credential`") # 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/credentials', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Credential', # 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_credential(
self, authorization, credential_name, **kwargs)
Delete credential 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.delete_credential(authorization, credential_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: None If the method is called asynchronously, returns the request thread.
def delete_credential(self, authorization, credential_name, **kwargs): # noqa: E501 """Delete credential 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.delete_credential(authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str credential_name: credentialName (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_credential_with_http_info(authorization, credential_name, **kwargs) # noqa: E501 else: (data) = self.delete_credential_with_http_info(authorization, credential_name, **kwargs) # noqa: E501 return data
def delete_credential_with_http_info(
self, authorization, credential_name, **kwargs)
Delete credential 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.delete_credential_with_http_info(authorization, credential_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: None If the method is called asynchronously, returns the request thread.
def delete_credential_with_http_info(self, authorization, credential_name, **kwargs): # noqa: E501 """Delete credential 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.delete_credential_with_http_info(authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: None If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'credential_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method delete_credential" % 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_credential`") # noqa: E501 # verify the required parameter 'credential_name' is set if ('credential_name' not in params or params['credential_name'] is None): raise ValueError("Missing the required parameter `credential_name` when calling `delete_credential`") # noqa: E501 collection_formats = {} path_params = {} if 'credential_name' in params: path_params['credentialName'] = params['credential_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/credentials/{credentialName}', '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_credentials_for_user(
self, authorization, **kwargs)
Get all credentials for user. # 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_credentials_for_user(authorization, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :return: list[Credential] If the method is called asynchronously, returns the request thread.
def get_all_credentials_for_user(self, authorization, **kwargs): # noqa: E501 """Get all credentials for user. # 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_credentials_for_user(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: list[Credential] 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_credentials_for_user_with_http_info(authorization, **kwargs) # noqa: E501 else: (data) = self.get_all_credentials_for_user_with_http_info(authorization, **kwargs) # noqa: E501 return data
def get_all_credentials_for_user_with_http_info(
self, authorization, **kwargs)
Get all credentials for user. # 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_credentials_for_user_with_http_info(authorization, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :return: list[Credential] If the method is called asynchronously, returns the request thread.
def get_all_credentials_for_user_with_http_info(self, authorization, **kwargs): # noqa: E501 """Get all credentials for user. # 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_credentials_for_user_with_http_info(authorization, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :return: list[Credential] 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_credentials_for_user" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'authorization' is set if ('authorization' not in params or params['authorization'] is None): raise ValueError("Missing the required parameter `authorization` when calling `get_all_credentials_for_user`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/credentials', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[Credential]', # 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_credential(
self, authorization, credential_name, **kwargs)
Get credential by name. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.get_credential(authorization, credential_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: Credential If the method is called asynchronously, returns the request thread.
def get_credential(self, authorization, credential_name, **kwargs): # noqa: E501 """Get credential by name. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_credential(authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: Credential If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.get_credential_with_http_info(authorization, credential_name, **kwargs) # noqa: E501 else: (data) = self.get_credential_with_http_info(authorization, credential_name, **kwargs) # noqa: E501 return data
def get_credential_with_http_info(
self, authorization, credential_name, **kwargs)
Get credential by name. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
thread = api.get_credential_with_http_info(authorization, credential_name, async_req=True) result = thread.get()
:param async_req bool :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: Credential If the method is called asynchronously, returns the request thread.
def get_credential_with_http_info(self, authorization, credential_name, **kwargs): # noqa: E501 """Get credential by name. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_credential_with_http_info(authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: Credential If the method is called asynchronously, returns the request thread. """ all_params = ['authorization', 'credential_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_credential" % 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_credential`") # noqa: E501 # verify the required parameter 'credential_name' is set if ('credential_name' not in params or params['credential_name'] is None): raise ValueError("Missing the required parameter `credential_name` when calling `get_credential`") # noqa: E501 collection_formats = {} path_params = {} if 'credential_name' in params: path_params['credentialName'] = params['credential_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/credentials/{credentialName}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Credential', # 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_credential(
self, body, authorization, credential_name, **kwargs)
Update credential. # 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_credential(body, authorization, credential_name, async_req=True) result = thread.get()
:param async_req bool :param InfrastructureProviderCredentials body: infrastructureProviderCredentials (required) :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: Credential If the method is called asynchronously, returns the request thread.
def update_credential(self, body, authorization, credential_name, **kwargs): # noqa: E501 """Update credential. # 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_credential(body, authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param InfrastructureProviderCredentials body: infrastructureProviderCredentials (required) :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: Credential If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async_req'): return self.update_credential_with_http_info(body, authorization, credential_name, **kwargs) # noqa: E501 else: (data) = self.update_credential_with_http_info(body, authorization, credential_name, **kwargs) # noqa: E501 return data
def update_credential_with_http_info(
self, body, authorization, credential_name, **kwargs)
Update credential. # 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_credential_with_http_info(body, authorization, credential_name, async_req=True) result = thread.get()
:param async_req bool :param InfrastructureProviderCredentials body: infrastructureProviderCredentials (required) :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: Credential If the method is called asynchronously, returns the request thread.
def update_credential_with_http_info(self, body, authorization, credential_name, **kwargs): # noqa: E501 """Update credential. # 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_credential_with_http_info(body, authorization, credential_name, async_req=True) >>> result = thread.get() :param async_req bool :param InfrastructureProviderCredentials body: infrastructureProviderCredentials (required) :param str authorization: Authorization (required) :param str credential_name: credentialName (required) :return: Credential If the method is called asynchronously, returns the request thread. """ all_params = ['body', 'authorization', 'credential_name'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method update_credential" % 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_credential`") # 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_credential`") # noqa: E501 # verify the required parameter 'credential_name' is set if ('credential_name' not in params or params['credential_name'] is None): raise ValueError("Missing the required parameter `credential_name` when calling `update_credential`") # noqa: E501 collection_formats = {} path_params = {} if 'credential_name' in params: path_params['credentialName'] = params['credential_name'] # noqa: E501 query_params = [] header_params = {} if 'authorization' in params: header_params['Authorization'] = params['authorization'] # noqa: E501 form_params = [] local_var_files = {} body_params = None if 'body' in params: body_params = params['body'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = [] # noqa: E501 return self.api_client.call_api( '/api/v1/credentials/{credentialName}/credentials', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='Credential', # 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