Command: license describe
The license describe
command shows the details about all licenses.
Usage
edw license describe [flags]
Optional Flag
-id
- Filters the license list to the id listed requested.
Output
If the -id
flag is omitted, then an array of licenses objects are
displayed, otherwise just the license filtered by the id is displayed. The
fields for the license objects shown are:
id
- The license IDname
- The Name that was supplied by the command.created_at
- The Date that the license was created.updated_at
- The Date that the license was updated.
Example: All Licenses
$ edw license describe
[
{
"id": k9don5r4e7ut,
"name": "CLI_example",
"created_at": "2020-04-09T18:20:25Z",
"updated_at": "2020-04-09T18:20:25Z"
},
{
"id": k9don5r4e8ue,
"name": "CLI_example_2",
"created_at": "2020-04-09T18:28:56Z",
"updated_at": "2020-04-09T18:28:56Z"
}
]
Example: Filtered by ID
$ edw license describe -id k9don5r4e7ut
{
"id": k9don5r4e7ut,
"name": "CLI_example",
"created_at": "2020-04-09T18:20:25Z",
"updated_at": "2020-04-09T18:20:25Z"
}