0.2.11 • Published 4 years ago

@fonos/ctl v0.2.11

Weekly downloads
515
License
MIT
Repository
github
Last release
4 years ago

ctl

Command-Line for for Fonos

oclif Version Downloads/week License

Usage

$ npm install -g @fonos/ctl
$ fonos COMMAND
running command...
$ fonos (-v|--version|version)
@fonos/ctl/0.2.11 darwin-x64 node-v14.16.0
$ fonos --help [COMMAND]
USAGE
  $ fonos COMMAND
...

Commands

fonos agents:create

creates a new agent resource

USAGE
  $ fonos agents:create

DESCRIPTION
  ...
     Creates a new Agent in the SIP Proxy subsystem

See code: dist/commands/agents/create.js

fonos agents:delete [REF]

remove agent from a Fonos deployment

USAGE
  $ fonos agents:delete [REF]

ALIASES
  $ fonos agents:del
  $ fonos agents:rm

See code: dist/commands/agents/delete.js

fonos agents:get [REF]

get information about an existing agent

USAGE
  $ fonos agents:get [REF]

See code: dist/commands/agents/get.js

fonos agents:list

list registered agents

USAGE
  $ fonos agents:list

OPTIONS
  -s, --size=size  [default: 25] agent of result per page

DESCRIPTION
  ...
     List the registered agents

ALIASES
  $ fonos agents:ls

See code: dist/commands/agents/list.js

fonos agents:update [REF]

updates a agent at the SIP Proxy subsystem

USAGE
  $ fonos agents:update [REF]

DESCRIPTION
  ...
     Updates a agent at the SIP Proxy subsystem

See code: dist/commands/agents/update.js

fonos auth:login

log in to a fonos deployment

USAGE
  $ fonos auth:login

See code: dist/commands/auth/login.js

fonos auth:logout

log out from a fonos deployment

USAGE
  $ fonos auth:logout

See code: dist/commands/auth/logout.js

fonos bug

start a bug report 🐞

USAGE
  $ fonos bug

DESCRIPTION
  ...
     Opens github issues with a predefine bug template

See code: dist/commands/bug.js

fonos domains:create

creates a new domain resource

USAGE
  $ fonos domains:create

DESCRIPTION
  ...
     Creates a new Domain in the SIP Proxy subsystem

See code: dist/commands/domains/create.js

fonos domains:delete [REF]

remove a domain from a Fonos deployment

USAGE
  $ fonos domains:delete [REF]

ALIASES
  $ fonos domains:del
  $ fonos domains:rm

See code: dist/commands/domains/delete.js

fonos domains:get [REF]

get information about an existing domain

USAGE
  $ fonos domains:get [REF]

See code: dist/commands/domains/get.js

fonos domains:list

list registered domains

USAGE
  $ fonos domains:list

OPTIONS
  -s, --size=size  [default: 25] number of result per page

DESCRIPTION
  ...
     List the registered domains

ALIASES
  $ fonos domains:ls

See code: dist/commands/domains/list.js

fonos domains:update [REF]

updates a domain at the SIP Proxy subsystem

USAGE
  $ fonos domains:update [REF]

DESCRIPTION
  ...
     Updates a domain at the SIP Proxy subsystem

See code: dist/commands/domains/update.js

fonos feedback

let'us know how we're doing

USAGE
  $ fonos feedback

DESCRIPTION
  ...
     Help us improve by providing some feedback

See code: dist/commands/feedback.js

fonos help [COMMAND]

display help for fonos

USAGE
  $ fonos help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

fonos numbers:create

creates a new number resource

USAGE
  $ fonos numbers:create

DESCRIPTION
  ...
     Creates a new Number in the SIP Proxy subsystem

See code: dist/commands/numbers/create.js

fonos numbers:delete [REF]

remove a number from a Fonos deployment

USAGE
  $ fonos numbers:delete [REF]

ALIASES
  $ fonos numbers:del
  $ fonos numbers:rm

See code: dist/commands/numbers/delete.js

fonos numbers:get [REF]

get information about an existing number

USAGE
  $ fonos numbers:get [REF]

See code: dist/commands/numbers/get.js

fonos numbers:list

list registered numbers

USAGE
  $ fonos numbers:list

OPTIONS
  -s, --size=size  [default: 25] number of result per page

DESCRIPTION
  ...
     List the registered numbers

ALIASES
  $ fonos numbers:ls

See code: dist/commands/numbers/list.js

fonos numbers:update [REF]

updates a number at the SIP Proxy subsystem

USAGE
  $ fonos numbers:update [REF]

DESCRIPTION
  ...
     Updates a number at the SIP Proxy subsystem

See code: dist/commands/numbers/update.js

fonos plugins

list installed plugins

USAGE
  $ fonos plugins

OPTIONS
  --core  show core plugins

EXAMPLE
  $ fonos plugins

See code: @oclif/plugin-plugins

fonos plugins:inspect PLUGIN...

displays installation properties of a plugin

USAGE
  $ fonos plugins:inspect PLUGIN...

ARGUMENTS
  PLUGIN  [default: .] plugin to inspect

OPTIONS
  -h, --help     show CLI help
  -v, --verbose

EXAMPLE
  $ fonos plugins:inspect myplugin

See code: @oclif/plugin-plugins

fonos plugins:install PLUGIN...

installs a plugin into the CLI

USAGE
  $ fonos plugins:install PLUGIN...

ARGUMENTS
  PLUGIN  plugin to install

OPTIONS
  -f, --force    yarn install with force flag
  -h, --help     show CLI help
  -v, --verbose

DESCRIPTION
  Can be installed from npm or a git url.

  Installation of a user-installed plugin will override a core plugin.

  e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command 
  will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in 
  the CLI without the need to patch and update the whole CLI.

ALIASES
  $ fonos plugins:add

EXAMPLES
  $ fonos plugins:install myplugin 
  $ fonos plugins:install https://github.com/someuser/someplugin
  $ fonos plugins:install someuser/someplugin

See code: @oclif/plugin-plugins

fonos plugins:link PLUGIN

links a plugin into the CLI for development

USAGE
  $ fonos plugins:link PLUGIN

ARGUMENTS
  PATH  [default: .] path to plugin

OPTIONS
  -h, --help     show CLI help
  -v, --verbose

DESCRIPTION
  Installation of a linked plugin will override a user-installed or core plugin.

  e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello' 
  command will override the user-installed or core plugin implementation. This is useful for development work.

EXAMPLE
  $ fonos plugins:link myplugin

See code: @oclif/plugin-plugins

fonos plugins:uninstall PLUGIN...

removes a plugin from the CLI

USAGE
  $ fonos plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

OPTIONS
  -h, --help     show CLI help
  -v, --verbose

ALIASES
  $ fonos plugins:unlink
  $ fonos plugins:remove

See code: @oclif/plugin-plugins

fonos plugins:update

update installed plugins

USAGE
  $ fonos plugins:update

OPTIONS
  -h, --help     show CLI help
  -v, --verbose

See code: @oclif/plugin-plugins

fonos providers:create

creates a new provider resource

USAGE
  $ fonos providers:create

DESCRIPTION
  ...
     Creates a new Provider in the SIP Proxy subsystem

See code: dist/commands/providers/create.js

fonos providers:delete [REF]

removes a provider from a Fonos deployment

USAGE
  $ fonos providers:delete [REF]

ALIASES
  $ fonos providers:del
  $ fonos providers:rm

See code: dist/commands/providers/delete.js

fonos providers:get [REF]

get information about an existing provider

USAGE
  $ fonos providers:get [REF]

See code: dist/commands/providers/get.js

fonos providers:list

list registered providers

USAGE
  $ fonos providers:list

OPTIONS
  -s, --size=size  [default: 25] provider of result per page

DESCRIPTION
  ...
     List the registered providers

ALIASES
  $ fonos providers:ls

See code: dist/commands/providers/list.js

fonos providers:update [REF]

updates a provider at the SIP Proxy subsystem

USAGE
  $ fonos providers:update [REF]

DESCRIPTION
  ...
     Updates a provider at the SIP Proxy subsystem

See code: dist/commands/providers/update.js

0.2.11

4 years ago

0.2.10

4 years ago

0.2.7

4 years ago

0.2.6

4 years ago

0.2.9

4 years ago

0.2.5

4 years ago

0.2.4

4 years ago

0.1.27

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.2.3

4 years ago

0.2.2

4 years ago

0.1.24

4 years ago

0.1.23

4 years ago

0.1.21

4 years ago

0.1.20

4 years ago

0.1.20-alpha.1

4 years ago

0.1.20-alpha.0

4 years ago

0.1.19-alpha.0

4 years ago

0.1.17-alpha.0

4 years ago

0.1.16-alpha.1

4 years ago

0.1.14-alpha.0

4 years ago

0.1.13-alpha.0

4 years ago

0.1.12-alpha.0

4 years ago

0.1.11-alpha.0

4 years ago

0.1.11-alpha.1

4 years ago

0.1.11-alpha.6

4 years ago

0.1.11-alpha.7

4 years ago

0.1.11-alpha.4

4 years ago

0.1.11-alpha.5

4 years ago

0.1.11-alpha.2

4 years ago

0.1.11-alpha.3

4 years ago

0.1.10-alpha.0

4 years ago

0.1.9-alpha.0

4 years ago

0.1.7-alpha.0

4 years ago

0.1.5-alpha.0

4 years ago

0.1.6-alpha.0

4 years ago

0.1.2-alpha.0

4 years ago

0.1.3-alpha.0

4 years ago

0.1.1-alpha.0

4 years ago

0.0.117

4 years ago

0.0.119

4 years ago

0.0.120

4 years ago

0.0.124

4 years ago

0.0.123

4 years ago

0.0.122

4 years ago

0.0.121

4 years ago

0.1.0-alpha.0

4 years ago

0.0.106

4 years ago

0.0.105

4 years ago

0.0.104

4 years ago

0.0.103

4 years ago

0.0.108

4 years ago

0.0.107

4 years ago

0.0.102

4 years ago

0.0.101

4 years ago

0.0.100

4 years ago

0.0.116

4 years ago

0.0.115

4 years ago

0.0.114

4 years ago

0.0.113

4 years ago

0.0.112

4 years ago

0.0.111

4 years ago

0.0.84

4 years ago

0.0.85

4 years ago

0.0.86

4 years ago

0.0.87

4 years ago

0.0.88

4 years ago

0.0.89

4 years ago

0.0.82

4 years ago

0.0.83

4 years ago

0.0.95

4 years ago

0.0.97

4 years ago

0.0.98

4 years ago

0.0.99

4 years ago

0.0.90

4 years ago

0.0.91

4 years ago

0.0.92

4 years ago

0.0.93

4 years ago

0.0.94

4 years ago

0.0.81

4 years ago

0.0.79

4 years ago

0.0.76

4 years ago

0.0.77

4 years ago

0.0.78

4 years ago

0.0.74

4 years ago

0.0.75

4 years ago

0.0.73

4 years ago

0.0.72

4 years ago

0.0.70

4 years ago

0.0.71

4 years ago

0.0.66

4 years ago

0.0.67

4 years ago

0.0.68

4 years ago

0.0.69

4 years ago

0.0.62

4 years ago

0.0.63

4 years ago

0.0.64

4 years ago

0.0.65

4 years ago

0.0.60

4 years ago

0.0.61

4 years ago

0.0.59

4 years ago

0.0.56

4 years ago

0.0.57

4 years ago

0.0.58

4 years ago

0.0.55

4 years ago

0.0.53

4 years ago

0.0.54

4 years ago

0.0.52

4 years ago

0.0.51

5 years ago

0.0.50

5 years ago

0.0.48

5 years ago

0.0.47

5 years ago

0.0.44

5 years ago

0.0.45

5 years ago

0.0.46

5 years ago

0.0.42

5 years ago

0.0.43

5 years ago

0.0.41

5 years ago

0.0.40

5 years ago

0.0.39

5 years ago

0.0.38

5 years ago

0.0.37

5 years ago

0.0.33

5 years ago

0.0.34

5 years ago

0.0.35

5 years ago

0.0.36

5 years ago

0.0.32

5 years ago

0.0.30

5 years ago

0.0.31

5 years ago

0.0.29

5 years ago

0.0.28

5 years ago

0.0.26

5 years ago

0.0.27

5 years ago

0.0.24

5 years ago

0.0.25

5 years ago

0.0.23

5 years ago

0.0.22

5 years ago

0.0.21

5 years ago

0.0.20

5 years ago

0.0.18

5 years ago

0.0.19

5 years ago

0.0.17

5 years ago

0.0.16

5 years ago

0.0.14

5 years ago

0.0.15

5 years ago

0.0.13

5 years ago

0.0.10

5 years ago

0.0.11

5 years ago

0.0.12

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.5

5 years ago

0.0.6

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.4

5 years ago

0.0.1

5 years ago