| |
- builtins.object
-
- ApplicationStatus
class ApplicationStatus(builtins.object) |
|
ApplicationStatus(health_status: str = None, sync_status: str = None, message: str = None, source: ai_core_sdk.models.application_source.ApplicationSource = None, sync_finished_at: str = None, sync_started_at: str = None, reconciled_at: str = None, sync_resources_status: List[ai_core_sdk.models.application_resource_sync_status.ApplicationResourceSyncStatus] = None, **kwargs)
The Application object defines the application.
:param health_status: Application health status, defaults to None
:type health_status: str, optional
:param sync_status: Application sync status, defaults to None
:type sync_status: str, optional
:param message: Application health status message, defaults to None
:type message: str, optional
:param source: Application source, defaults to None
:type source: class:`ai_core_sdk.models.application_status.ApplicationStatus`, optional
:param sync_finished_at: Application sync finish time, defaults to None
:type sync_finished_at: str, optional
:param sync_started_at: Application sync start time, defaults to None
:type sync_started_at: str, optional
:param reconciled_at: Application reconciliation time, defaults to None
:type reconciled_at: str, optional
:param sync_resources_status: Status of the synchronization of the application resources, defaults to None
:type sync_resources_status:
List[class:`ai_core_sdk.models.application_resource_sync_status.ApplicationResourceSyncStatus`], optional |
|
Methods defined here:
- __init__(self, health_status: str = None, sync_status: str = None, message: str = None, source: ai_core_sdk.models.application_source.ApplicationSource = None, sync_finished_at: str = None, sync_started_at: str = None, reconciled_at: str = None, sync_resources_status: List[ai_core_sdk.models.application_resource_sync_status.ApplicationResourceSyncStatus] = None, **kwargs)
- Initialize self. See help(type(self)) for accurate signature.
- __str__(self)
- Return str(self).
Static methods defined here:
- from_dict(application_status_dict: Dict[str, Any])
- Returns a :class:`ai_core_sdk.models.application_status.ApplicationStatus` object, created from the values in
the dict provided as parameter
:param application_status_dict: Dict which includes the necessary values to create the object
:type application_status_dict: Dict[str, Any]
:return: An object, created from the values provided
:rtype: class:`ai_core_sdk.models.application_status.ApplicationStatus`
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
| |