ai_api_client_sdk.resource_clients.base_client
index
/home/jenkins/agent/workspace/ndation_ai-api-client-sdk_master/ai_api_client_sdk/resource_clients/base_client.py

 
Classes
       
builtins.object
BaseClient

 
class BaseClient(builtins.object)
    BaseClient(rest_client: ai_api_client_sdk.helpers.rest_client.RestClient)
 
BaseClient defines the interface for the resource clients.
 
:param rest_client: the client used to make calls to the server
:type rest_client: class:`ai_api_client_sdk.helpers.rest_client.RestClient`
 
  Methods defined here:
__init__(self, rest_client: ai_api_client_sdk.helpers.rest_client.RestClient)
Initialize self.  See help(type(self)) for accurate signature.
bulk_modify(self, *args, **kwargs)
Modifies multiple instances of the relevant resource. Will be implemented by the respective resource clients
count(self, *args, **kwargs)
Counts the relevant resources. Will be implemented by the respective resource clients
create(self, *args, **kwargs)
Creates the relevant resource. Will be implemented by the respective resource clients
delete(self, *args, **kwargs)
Deletes the relevant resource. Will be implemented by the respective resource clients
get(self, *args, **kwargs)
Retrieves the relevant resource. Will be implemented by the respective resource clients
modify(self, *args, **kwargs)
Modifies the relevant resource. Will be implemented by the respective resource clients
query(self, *args, **kwargs)
Queries the relevant resources. Will be implemented by the respective resource clients
query_logs(self, *args, **kwargs)
Queries the relevant logs. Will be implemented by the respective resource clients

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
Data
        Any = typing.Any
DATETIME_FORMAT = '%Y-%m-%dT%H:%M:%SZ'
Dict = typing.Dict