v57

latestOpenAPI 3.1.0Apache-2.0raw.githubusercontent.com2026-08-012143051018.3 KB
DPU Extension Service

Retrieve DPU Extension Service Version

Retrieve details for a specific version of a DPU Extension Service.

DPU Extension Service must be owned by current Tenant.

Org must have a Tenant entity. User must have authorization role with TENANT_ADMIN suffix.

get/v2/org/{org}/nico/dpu-extension-service/{dpuExtensionServiceId}/version/{version}

Response

versionstring nullable

Current version of the DPU Extension Service

datastring

Deployment spec for the DPU Extension Service

hasCredentialsboolean

Indicates whether this version was created with credentials

createdstring date-time

Date/time when this version of the DPU Extension Service was created

Example response

{
  "version": "V1-T1761856992374052",
  "data": "apiVersion: apps/v1\\nkind: Deployment\\nmetadata:\\n  name: busybox-deployment\\n  labels:\\n    app: busybox\\nspec:\\n  replicas: 1 # You can adjust the number of desired replicas here\\n  selector:\\n    matchLabels:\\n      app: busybox\\n  template:\\n    metadata:\\n      labels:\\n        app: busybox\\n    spec:\\n      containers:\\n      - name: busybox-container\\n        image: busybox:latest # You can specify a different BusyBox image tag\\n        command: [\"sh\", \"-c\", \"echo \\'BusyBox container running\\' && sleep 3600\"]",
  "hasCredentials": true,
  "created": "2019-08-24T14:15:22Z",
  "observability": {
    "configs": [
      {
        "name": "busybox-metrics",
        "prometheus": {
          "scrapeIntervalSeconds": 30,
          "endpoint": "busybox:9090"
        }
      }
    ]
  }
}