- Overview
- Getting Started Guide
- UserGuide
-
References
-
ABEJA Platform CLI
- CONFIG COMMAND
- DATALAKE COMMAND
- DATASET COMMAND
- TRAINING COMMAND
-
MODEL COMMAND
- check-endpoint-image
- check-endpoint-json
- create-deployment
- create-endpoint
- create-model
- create-service
- create-trigger
- create-version
- delete-deployment
- delete-endpoint
- delete-model
- delete-service
- delete-version
- describe-deployments
- describe-endpoints
- describe-models
- describe-service-logs
- describe-services
- describe-versions
- download-versions
- run-local
- run-local-server
- start-service
- stop-service
- submit-run
- update-endpoint
- startapp command
-
ABEJA Platform CLI
- FAQ
- Appendix
describe-deployments
Description
Describe the deployments info.
If deployment_id
is specified, the corresponding deployment is displayed.
Ifdeployment_id
is not specified, the deployment is displayed in a list.
Synopsis
$ abeja model describe-deployments [--help]
Usage: abeja model describe-deployments [OPTIONS]
Get to deployment or deployment list
Options:
-d, --deployment_id TEXT Deployment identifier
--help Show this message and exit.
Option
-d
, --deployment_id
Specify deployment_id when created with create-deployment.
Example
Describe for a specified deployment
Command:
$ abeja model describe-deployments --deployment_id 3456789012345
Output:
{
"created_at": "2017-09-01T00:00:00.000000Z",
"deployment_id": "3456789012345",
"model_id": "1234567890123",
"modified_at": "2017-09-01T00:00:00.000000Z",
"name": "default"
}