describe-versions

Description

Describe versions.

If version_id is specified, the corresponding version is displayed. Ifversion_id is not specified, the version is displayed in a list.

Synopsis

$ abeja model describe-versions [--help]
Usage: abeja model describe-versions [OPTIONS]

  Get to version or version list

Options:
  -m, --model_id TEXT    Model identifier  [required]
  -v, --version_id TEXT  Version identifier
  --help                 Show this message and exit.

Options

-m, --model_id

Specify model_id when created with create-model.

-v, --version_id

Specify model_id when created with create-version.

Example

Describe information of specified version

Command:

$ abeja model describe-versions --model_id 1234567890123 --version_id ver-2345678901234

Output:

{
  "created_at": "2017-09-01T00:00:00.000000Z",
  "handler": "",
  "image": "abeja-inc/all-cpu:18.10",
  "model_id": "1234567890123",
  "modified_at": "2017-09-01T00:00:00.000000Z",
  "version": "0.1",
  "version_id": "ver-2345678901234"
}