0.2.11 • Published 3 years ago

@fonos/ctl v0.2.11

Weekly downloads
515
License
MIT
Repository
github
Last release
3 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

3 years ago

0.2.10

3 years ago

0.2.7

3 years ago

0.2.6

3 years ago

0.2.9

3 years ago

0.2.5

3 years ago

0.2.4

3 years ago

0.1.27

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.2.3

3 years ago

0.2.2

3 years ago

0.1.24

3 years ago

0.1.23

3 years ago

0.1.21

3 years ago

0.1.20

3 years ago

0.1.20-alpha.1

3 years ago

0.1.20-alpha.0

3 years ago

0.1.19-alpha.0

3 years ago

0.1.17-alpha.0

3 years ago

0.1.16-alpha.1

3 years ago

0.1.14-alpha.0

3 years ago

0.1.13-alpha.0

3 years ago

0.1.12-alpha.0

3 years ago

0.1.11-alpha.0

3 years ago

0.1.11-alpha.1

3 years ago

0.1.11-alpha.6

3 years ago

0.1.11-alpha.7

3 years ago

0.1.11-alpha.4

3 years ago

0.1.11-alpha.5

3 years ago

0.1.11-alpha.2

3 years ago

0.1.11-alpha.3

3 years ago

0.1.10-alpha.0

3 years ago

0.1.9-alpha.0

3 years ago

0.1.7-alpha.0

3 years ago

0.1.5-alpha.0

3 years ago

0.1.6-alpha.0

3 years ago

0.1.2-alpha.0

3 years ago

0.1.3-alpha.0

3 years ago

0.1.1-alpha.0

3 years ago

0.0.117

3 years ago

0.0.119

3 years ago

0.0.120

3 years ago

0.0.124

3 years ago

0.0.123

3 years ago

0.0.122

3 years ago

0.0.121

3 years ago

0.1.0-alpha.0

3 years ago

0.0.106

3 years ago

0.0.105

3 years ago

0.0.104

3 years ago

0.0.103

3 years ago

0.0.108

3 years ago

0.0.107

3 years ago

0.0.102

3 years ago

0.0.101

3 years ago

0.0.100

3 years ago

0.0.116

3 years ago

0.0.115

3 years ago

0.0.114

3 years ago

0.0.113

3 years ago

0.0.112

3 years ago

0.0.111

3 years ago

0.0.84

3 years ago

0.0.85

3 years ago

0.0.86

3 years ago

0.0.87

3 years ago

0.0.88

3 years ago

0.0.89

3 years ago

0.0.82

3 years ago

0.0.83

3 years ago

0.0.95

3 years ago

0.0.97

3 years ago

0.0.98

3 years ago

0.0.99

3 years ago

0.0.90

3 years ago

0.0.91

3 years ago

0.0.92

3 years ago

0.0.93

3 years ago

0.0.94

3 years ago

0.0.81

3 years ago

0.0.79

3 years ago

0.0.76

3 years ago

0.0.77

3 years ago

0.0.78

3 years ago

0.0.74

3 years ago

0.0.75

3 years ago

0.0.73

3 years ago

0.0.72

3 years ago

0.0.70

3 years ago

0.0.71

3 years ago

0.0.66

3 years ago

0.0.67

3 years ago

0.0.68

3 years ago

0.0.69

3 years ago

0.0.62

3 years ago

0.0.63

3 years ago

0.0.64

3 years ago

0.0.65

3 years ago

0.0.60

3 years ago

0.0.61

3 years ago

0.0.59

3 years ago

0.0.56

3 years ago

0.0.57

3 years ago

0.0.58

3 years ago

0.0.55

3 years ago

0.0.53

3 years ago

0.0.54

3 years ago

0.0.52

3 years ago

0.0.51

3 years ago

0.0.50

3 years ago

0.0.48

3 years ago

0.0.47

3 years ago

0.0.44

3 years ago

0.0.45

3 years ago

0.0.46

3 years ago

0.0.42

3 years ago

0.0.43

3 years ago

0.0.41

4 years ago

0.0.40

4 years ago

0.0.39

4 years ago

0.0.38

4 years ago

0.0.37

4 years ago

0.0.33

4 years ago

0.0.34

4 years ago

0.0.35

4 years ago

0.0.36

4 years ago

0.0.32

4 years ago

0.0.30

4 years ago

0.0.31

4 years ago

0.0.29

4 years ago

0.0.28

4 years ago

0.0.26

4 years ago

0.0.27

4 years ago

0.0.24

4 years ago

0.0.25

4 years ago

0.0.23

4 years ago

0.0.22

4 years ago

0.0.21

4 years ago

0.0.20

4 years ago

0.0.18

4 years ago

0.0.19

4 years ago

0.0.17

4 years ago

0.0.16

4 years ago

0.0.14

4 years ago

0.0.15

4 years ago

0.0.13

4 years ago

0.0.10

4 years ago

0.0.11

4 years ago

0.0.12

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.5

4 years ago

0.0.6

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.4

4 years ago

0.0.1

4 years ago