- 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
delete
Description
Deletes a specified configuration. It prompts confirmation before actually deleting a configuration.
Synopsis
$ abeja config delete [OPTIONS] [NAME]
Removes an existing configuration. If you want to delete the default
configuration, run `abeja config delete`.
Options:
-y, --yes, --assume-yes Automatically respond yes to confirmation prompts;
assume "yes" as answer to all prompts and run non-
interactively.
--help Show this message and exit.
Option
-y
, --yes
, --assume-yes
If this option enabled, automatically respond yes to confirmation prompts while deleting a credential.
Example
Deletes the default configuration
Command:
$ abeja config delete
Output:
The configuration "(default)" will be removed. Do you want to continue? [y/N]: y
[INFO]: The configuration "(default)" successfully deleted.
Deletes a named configuration
Command:
$ abeja config delete example
Output:
The configuration "example" will be removed. Do you want to continue? [y/N]: y
[INFO]: The configuration "example" successfully deleted.