ByCloud CLI
The ByCloud CLI provides a command-line interface for managing your cloud infrastructure. It follows a consistent pattern and supports multiple output formats.
Command Pattern
All commands follow a consistent pattern:
bycloud <category> <resource> <action> [flags]Example: bycloud compute instances list, bycloud iam users create --email user@example.com
Quick Start
1. Install the CLI:
curl -sSL https://get.bycloud.com/cli | bash2. Authenticate:
bycloud auth login3. Start using commands:
bycloud compute instances listOutput Formats
Control the output format using the --output flag:
--output textHuman-readable text format (default)
--output jsonJSON format for scripting
--output yamlYAML format
Getting Help
Use the --help flag on any command to see available options:
bycloud compute instances create --help