| |
- ai_api_client_sdk.models.enactment_get_status_response.EnactmentGetStatusResponse(builtins.object)
-
- DeploymentGetStatusResponse
class DeploymentGetStatusResponse(ai_api_client_sdk.models.enactment_get_status_response.EnactmentGetStatusResponse) |
|
DeploymentGetStatusResponse(id: str, configuration_id: str, status: ai_api_client_sdk.models.status.Status, created_at: datetime.datetime, modified_at: datetime.datetime, status_details: Dict[str, Any] = None, details: Dict[str, Any] = None)
The DeploymentGetStatusResponse object defines the response of the deployment get status
:param id: ID of the deployment
:type id: str
:param configuration_id: ID of the configuration which configured the deployment
:type configuration_id: str
:param status: Status of the deployment
:type status: class:`ai_api_client_sdk.models.status.Status`
:param created_at: Time when the deployment was created
:type created_at: datetime
:param modified_at: Time when the deployment was last modified
:type modified_at: datetime
:param status_details: A dict, which gives detailed information about the status of the deployment, defaults to None
:type status_details: Dict[str, Any], optional |
|
- Method resolution order:
- DeploymentGetStatusResponse
- ai_api_client_sdk.models.enactment_get_status_response.EnactmentGetStatusResponse
- builtins.object
Methods defined here:
- __init__(self, id: str, configuration_id: str, status: ai_api_client_sdk.models.status.Status, created_at: datetime.datetime, modified_at: datetime.datetime, status_details: Dict[str, Any] = None, details: Dict[str, Any] = None)
- Initialize self. See help(type(self)) for accurate signature.
- __str__(self)
- Return str(self).
Static methods defined here:
- from_dict(deployment_dict: Dict[str, Any])
- Returns a :class:`ai_api_client_sdk.models.deployment_get_status_response.DeploymentGetStatusResponse`
object, created from the values in the dict provided as parameter
:param deployment_dict: Dict which includes the necessary values to create the object
:type deployment_dict: Dict[str, Any]
:return: An object, created from the values provided
:rtype: class:`ai_api_client_sdk.models.deployment_get_status_response.DeploymentGetStatusResponse`
Data descriptors inherited from ai_api_client_sdk.models.enactment_get_status_response.EnactmentGetStatusResponse:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
| |