- 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-services
Description
Descrive Services.
If service_id
is specified, the corresponding service is displayed.
Ifservice_id
is not specified, the service is displayed in a list.
Synopsis
$ abeja model describe-services [--help]
Usage: abeja model describe-services [OPTIONS]
Get to service or service list
Options:
-d, --deployment_id TEXT Deployment identifier [required]
-s, --service_id TEXT Service identifier
--help Show this message and exit.
Options
-d
, --deployment_id
Specify deployment_id when create-deployment is created.
-s
, --service_id
Specify service_id when create-service is created.
Example
Describe information about a specified service
Command:
$ abeja model describe-services --deployment_id 3456789012345 --service_id ser-4567890123456
Output:
{
"alias": "v01",
"created_at": "2017-09-01T00:00:00.000000Z",
"default_endpoint": "not_implemented",
"deployment_id": "3456789012345",
"model_version": "0.1",
"model_version_id": "ver-2345678901234",
"modified_at": "2017-09-01T00:00:00.000000Z",
"service_id": "ser-4567890123456",
"service_process_type": "multi"
}