- 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
check-endpoint-json
Description
Confirm the operation to the created service endpoint. (JSON)
Synopsis
$ abeja model check-endpoint-json [--help]
Usage: abeja model check-endpoint-json [OPTIONS]
Check endpoint json
Options:
-d, --deployment_id TEXT Deployment identifier [required]
-s, --service_id TEXT Service identifier
-k, --key TEXT Key [required]
-v, --value TEXT Value [required]
--help Show this message and exit.
Options
-d
, --deployment_id
Specify the deployment ID. (Required)
-s
, --service_id
Specify the service ID.
-k
, --key
Specify JSON Key information.
-v
, --value
Specify JSON Value information.
Example
Check endpoint JSON
This example performs an endpoint check on the image.
Command:
$ abeja model check-endpoint-json --deployment_id 1234567890123 --service_id ser-abc12345def678g9 --key total_without_tax --value 100
Output:
{
"total": 108.0
}