dunebox-status

Gets the status of running and permitted AVDs

Arguments

ArgumentTypeOptionalInterpretation

--server

String

Yes

URL of Dunebox server. Overrides the configured value if provided.

--access-key

String

Yes

Your access key. Overrides configured value if provided.

--secret-key

String

Yes

Your secret key. Overrides configured value if provided.

--pretty

flag

Yes

Pretty prints output. Default is JSON.

Successful Output

When called without the --pretty flag, the result is a JSON array in which each entry is an object with the following fields:

FieldTypeIntepretation

uid

String

UID of the configured AVD

name

String

Name of the configured AVD

api

uint8

API level of the configured AVD

device

String

Device of configured AVD

tag

String

AVD Base image tag (e.g. google_apis)

abi

String

Application Binary Interface of the AVD (e.g. x86_64)

permitted

bool

Whether the AVD can be launched

started

bool

Whether the AVD has been started

running

bool

Whether the AVD is running

auto_session_id

uint32

Auto Session ID (asid) of the AVD. The field is absent if the AVD is not running.

The result is pretty printed when called with the --pretty flag.

Last updated