3.15.1. List agents

 
MethodURIDescription
GET/v2/{tenant_id}/os-agents

Lists all agent builds.

Normal response codes: 200

 3.15.1.1. Request

This table shows the URI parameters for the list agents request:

NameTypeDescription

{tenant_id}

​String

The unique ID of the tenant or account.

This operation does not require a request body.

 3.15.1.2. Response

 

Example 3.105. List agents: JSON response

{
    "agents": [
        {
            "agent_id": "1",
            "architecture": "x86",
            "hypervisor": "hypervisor",
            "md5hash": "add6bb58e139be103324d04d82d8f545",
            "os": "os",
            "url": "xxxxxxxxxxxx",
            "version": "8.0"
        }
    ]
}

 

Example 3.106. List agents: XML response

<?xml version='1.0' encoding='UTF-8'?>
<agents>
  <agent url="xxxxxxxxxxxx" hypervisor="hypervisor" md5hash="add6bb58e139be103324d04d82d8f545" version="8.0" architecture="x86" os="os" agent_id="1"/>
</agents>

This operation does not return a response body.

Questions? Discuss on ask.openstack.org
Found an error? Report a bug against this page


loading table of contents...