ai_api_client_sdk.models.deployment_get_status_response module¶
- class ai_api_client_sdk.models.deployment_get_status_response.DeploymentGetStatusResponse(id: str, configuration_id: str, status: Status, created_at: datetime, modified_at: datetime, status_details: Dict[str, Any] = None, details: Dict[str, Any] = None)¶
Bases:
EnactmentGetStatusResponseThe 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
- __init__(id: str, configuration_id: str, status: Status, created_at: datetime, modified_at: datetime, status_details: Dict[str, Any] = None, details: Dict[str, Any] = None)¶
- static from_dict(deployment_dict: Dict[str, Any])¶
Returns a
ai_api_client_sdk.models.deployment_get_status_response.DeploymentGetStatusResponseobject, 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