Skip to content

Commit

Permalink
Merge branch 'devel' of github.com:grycap/im into devel
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed May 2, 2024
2 parents b5b7c3a + 57667d7 commit 5a41722
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions doc/source/client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,48 @@ The :program:`im_client` is called like this::
{"infid": "ID", "error": "Error message"}

``cloudusage cloud_id``
Show the usage/quotas of the cloud with ID ``cloud_id``.
The results will be returned to stdout in json format::

[
{
"uri": "ost://server.com/image_id1",
"name": "Image 1 Name"
},
{
"uri": "ost://server.com/image_id2",
"name": "Image 2 Name"
}
]

``cloudimages cloud_id``
Show the images available in the cloud with ID ``cloud_id``.
The results will be returned to stdout in json format (-1 means no limit)::

{
"cores": {
"used": 36,
"limit": -1
},
"ram": {
"used": 50,
"limit": -1
},
"instances": {
"used": 10,
"limit": 50
},
"security_groups": {
"used": 0,
"limit": -1
},
"floating_ips": {
"used": 0,
"limit": -1
}
}

.. _auth-file:

Authorization File
Expand Down

0 comments on commit 5a41722

Please sign in to comment.