| |
- builtins.object
-
- ApplicationSource
class ApplicationSource(builtins.object) |
|
ApplicationSource(repo_url: str = None, path: str = None, revision: str = None, **kwargs)
The ApplicationSource object defines the application source.
:param repo_url: URL of the repository, defaults to None
:type repo_url: str, optional
:param path: path within the repository, defaults to None
:type path: str, optional
:param revision: revision number of the application, defaults to None
:type revision: str, optional |
|
Methods defined here:
- __init__(self, repo_url: str = None, path: str = None, revision: str = None, **kwargs)
- Initialize self. See help(type(self)) for accurate signature.
- __str__(self)
- Return str(self).
Static methods defined here:
- from_dict(application_source_dict: Dict[str, str])
- Returns a :class:`ai_core_sdk.models.application_source.ApplicationSource` object, created from the values in
the dict provided as parameter
:param application_source_dict: Dict which includes the necessary values to create the object
:type application_source_dict: Dict[str, Any]
:return: An object, created from the values provided
:rtype: class:`ai_core_sdk.models.application_source.ApplicationSource`
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
| |