| Name |
Type |
Description |
Notes |
| creator_email |
str |
|
|
| cluster_id |
int |
|
|
| id |
int |
|
|
| name |
str |
|
|
| endpoint_url |
str |
|
|
| image_url |
str |
|
[optional] |
| type |
DeploymentType |
|
|
| status |
DeploymentStatus |
|
|
| created_at |
datetime |
|
|
| hardware_instance_id |
int |
|
|
| revision_number |
int |
|
|
| recipe |
CServeV2Recipe |
|
|
| cserve_version |
str |
|
[optional] |
| llm_model |
str |
|
|
| centml_api_key |
str |
|
|
| min_scale |
int |
|
[optional] [default to 1] |
| max_scale |
int |
|
[optional] [default to 1] |
| initial_scale |
int |
|
[optional] |
| endpoint_certificate_authority |
str |
|
[optional] |
| endpoint_bearer_token |
str |
|
[optional] |
| concurrency |
int |
|
[optional] |
| env_vars |
Dict[str, str] |
|
[optional] |
from platform_api_python_client.models.get_rag_deployment_response import GetRagDeploymentResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetRagDeploymentResponse from a JSON string
get_rag_deployment_response_instance = GetRagDeploymentResponse.from_json(json)
# print the JSON string representation of the object
print(GetRagDeploymentResponse.to_json())
# convert the object into a dict
get_rag_deployment_response_dict = get_rag_deployment_response_instance.to_dict()
# create an instance of GetRagDeploymentResponse from a dict
get_rag_deployment_response_from_dict = GetRagDeploymentResponse.from_dict(get_rag_deployment_response_dict)
[Back to Model list] [Back to API list] [Back to README]