ai_core_sdk.models.application
index
/data/jenkins/workspace/AI-Foundation_ai-core-sdk_master/ai_core_sdk/models/application.py

 
Classes
       
builtins.object
Application

 
class Application(builtins.object)
    Application(path: str, revision: str, repository_url: str, application_name: str, *args, **kwargs)
 
The Application object defines the application.
 
:param path: path within the repository
:type path: str
:param revision: revision
:type revision: str
:param repository_url: URL of the repository
:type repository_url: str
:param application_name: name of the application
:type application_name: str
 
  Methods defined here:
__init__(self, path: str, revision: str, repository_url: str, application_name: str, *args, **kwargs)
Initialize self.  See help(type(self)) for accurate signature.

Static methods defined here:
from_dict(application_dict: Dict[str, str])
Returns a :class:`ai_core_sdk.models.application.Applicationobject, created from the values in
the dict provided as parameter
 
:param application_dict: Dict which includes the necessary values to create the object
:type application_dict: Dict[str, Any]
:return: An object, created from the values provided
:rtype: class:`ai_core_sdk.models.application.Application`

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

 
Data
        Dict = typing.Dict