Agent Types

List agent types

get
Responses
200

OK

application/json
get
GET /v1/agent-types HTTP/1.1
Host: 
Accept: */*
{
  "agentTypes": [
    {
      "apiVersion": "string",
      "kind": "string",
      "metadata": {
        "additionalInfo": {
          "documentation": [
            {
              "text": "text",
              "url": "text"
            }
          ],
          "message": "string"
        },
        "dateModified": "text",
        "deprecated": true,
        "description": "string",
        "displayName": "string",
        "hash": "text",
        "icon": "string",
        "id": "string",
        "labels": {},
        "name": "string",
        "resourceDocLink": "string",
        "stability": "string",
        "version": 1,
        "warning": "string"
      },
      "spec": {
        "platformArchSet": [
          {
            "arch": "text",
            "platform": "text"
          }
        ],
        "repositoryLink": "text"
      },
      "status": {}
    }
  ]
}

Delete agent type by name

delete
Path parameters
namestringRequired

the name of the agent type to delete

Responses
204

Successful Delete, no content

No content

delete
DELETE /v1/agent-types/{name} HTTP/1.1
Host: 
Accept: */*

No content

Was this helpful?