Skip to main content
GET
/
compute
/
compute-assets
/
{collection_topic}
/
{resource_topic}
/
history
Get compute asset history
curl --request GET \
  --url https://api.quiva.ai/compute/compute-assets/{collection_topic}/{resource_topic}/history \
  --header 'Authorization: Bearer <token>'
{
  "body": {
    "results": [
      {
        "collection_topic": "my-namespace",
        "service": "123456789",
        "runtime": "nodejs",
        "handler": "index.handler",
        "assets": [
          {
            "asset_name": "index.js",
            "asset_type": "file",
            "asset_value": "Y29uc29sZS5sb2coIkhlbGxvLCBXb3JsZCEiKTsK",
            "link": false
          }
        ],
        "timeout": 30000,
        "read_only_fs": true,
        "modified": 1714378974
      },
      {
        "collection_topic": "my-namespace",
        "service": "123456789",
        "runtime": "nodejs",
        "handler": "index.newHandler",
        "assets": [
          {
            "asset_name": "index.js",
            "asset_type": "file",
            "asset_value": "Y29uc29sZS5sb2coIkhlbGxvLCBVcGRhdGVkIFdvcmxkISIpOwo=",
            "link": false
          }
        ],
        "timeout": 60000,
        "read_only_fs": true,
        "modified": 1714380000
      }
    ],
    "results_total": 2
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

collection_topic
string
required

Collection topic identifier

resource_topic
string
required

Resource topic identifier (function or container)

Response

Compute asset history

body
object