edjx application update

Updates a specific application.

You must know the Application ID to execute this command.

Usage

edjx application update <application-UUID>
[-a, --active <value>]
[-n, --name <application-name>]

Options

Option Required Type Description

<application-UUID>

Yes

UUID

The application UUID to update.

-a, --active <value>

No

bool

Sets the application to be true (active) or false (inactive).
Default: true

-n, --name <application-name>

No

string

The new name of the application.

Global Flags

Option Required Type Description

-h, --help

No

Displays inline help for the command.

--config <file-location>

No

string

Location of client configuration file (default file path is $HOME/.edjx/.edjx.yaml).

Change the Application Name

  1. Make sure you are in the organization view.

    edjx config organization -i
  2. View the applications assigned to the organization.

    edjx appliction list
  3. Copy the Application ID of the application you want to update.

  4. Execute the update command.

    edjx application update <application-UUID> -n <application-name>

    Sample Output

    root@edjx:~ # edjx application update 70bf3597-f247-44ce-92cc-9e1ab1698cc1 -n app-update
    Application updated successfully

Change the Status of an Application to Inactive

  1. Make sure you are in the organization view.

    edjx config organization -i
  2. View the applications assigned to the organization.

    edjx appliction list
  3. Copy the Application ID of the application you want to update.

  4. Execute the update command.

    edjx application update <application-UUID> -a false

    Sample Output

    root@edjx:~ # edjx application update 70bf3597-f247-44ce-92cc-9e1ab1698cc1 -a false
    Application updated successfully