본문으로 건너뛰기

ListResponse[ModelResponse]

Paginated response containing Model Response records. The required field is items.

items object[]필수

List of resource items

  • Array [
  • idId (string)필수

    Server-assigned unique identifier

    nameName (string)필수

    Resource name

    alias object

    URL-safe short handle

    하나 이상(anyOf)
    string
    categoryCategory (string)필수

    Resource type tag

    typeType (string)필수

    Model placement: internal is hosted in D.Hub; external uses a registered endpoint.

    Possible values: [internal, external]

    collection_id object

    Parent collection ID

    하나 이상(anyOf)
    string
    folder_id object

    Identifier of the containing folder.

    하나 이상(anyOf)
    string
    tags object

    Classification labels

    하나 이상(anyOf)
  • Array [
  • string
  • ]
  • description object

    Resource description

    하나 이상(anyOf)
    string
    markingsstring[]

    Mandatory marking ids this resource requires; read-only — set via the marking guard endpoints, not Create/PATCH.

    기본값: []
    created_at object

    Creation timestamp (Unix ms)

    하나 이상(anyOf)
    integer
    updated_at object

    Last update timestamp (Unix ms)

    하나 이상(anyOf)
    integer
    owners object[]

    Users and groups that own the resource.

  • Array [
  • idId (string)필수

    "user." | "group." | "public.all"

    typeType (string)필수

    Possible values: [user, group, public]

    display_nameDisplay Name (string)필수
    avatar_url object
    하나 이상(anyOf)
    string
    avatar_config object
    하나 이상(anyOf)
    object
    email object
    하나 이상(anyOf)
    string<email>
  • ]
  • my_share_scope object

    How the current caller received access to the resource.

    하나 이상(anyOf)
    string

    Possible values: [owner, grant, admin]

    protocolProtocol (string)필수

    REST contract identifier ('openai-embeddings' | 'custom').

    Possible values: [openai-embeddings, custom]

    deployment object
    하나 이상(anyOf)
    imageImage (string)필수

    Fully qualified container image reference. Custom images must be digest-pinned and cannot use the latest tag.

    artifact_version object

    Artifact version identifier to deploy. Omit it to resolve the latest version when deployment starts.

    하나 이상(anyOf)
    string
    command object

    Optional container entrypoint override.

    하나 이상(anyOf)
  • Array [
  • string
  • ]
  • args object

    Optional arguments that override the image command.

    하나 이상(anyOf)
  • Array [
  • string
  • ]
  • portPort (integer)
    기본값: 8080
    cpu object

    Requested CPU amount, such as 500m.

    하나 이상(anyOf)
    string
    memory object

    Requested memory amount, such as 2Gi.

    하나 이상(anyOf)
    string
    gpu object

    GPU count request

    하나 이상(anyOf)
    integer
    replicasReplicas (integer)

    Number of model instances to run. Higher values increase resource usage.

    기본값: 1
    health_pathHealth Path (string)

    HTTP path used to check whether the model is ready and healthy.

    기본값: /healthz
    env object

    Non-secret environment variables passed to the model container. Store secrets separately.

    property name*string
    node_selector object

    Node labels that every selected execution node must match.

    property name*string
    tolerations object[]

    Node taints that the model deployment is allowed to tolerate.

  • Array [
  • key object

    Taint key matched by this toleration, or null to match every key when operator is Exists.

    하나 이상(anyOf)
    string
    operatorOperator (string)

    'Equal' requires value; 'Exists' ignores it.

    Possible values: [Exists, Equal]

    기본값: Equal
    value object
    하나 이상(anyOf)
    string
    effect object

    Taint effect matched by this toleration, or null to match every effect.

    하나 이상(anyOf)
    string

    Possible values: [NoSchedule, PreferNoSchedule, NoExecute]

    toleration_seconds object

    For effect='NoExecute', evict after this many seconds.

    하나 이상(anyOf)
    integer
  • ]
  • url object
    하나 이상(anyOf)
    string
    auth object
    하나 이상(anyOf)
    kindKind (string)

    Possible values: [bearer, none]

    기본값: none
    secret_ref object

    Opaque reference to a stored secret. Required when kind is bearer; raw tokens are never returned.

    하나 이상(anyOf)
    string
    headerHeader (string)
    기본값: Authorization
    prefixPrefix (string)
    기본값: Bearer
    model object
    하나 이상(anyOf)
    string
    readyReady (boolean)
    기본값: false
    itemItem (string)필수사용 중단
  • ]
  • next_cursor object

    Cursor for next page

    하나 이상(anyOf)
    string
    has_moreHas More (boolean)

    Whether more pages exist

    기본값: false
    ListResponse[ModelResponse]
    {
    "items": [
    {
    "id": "string",
    "name": "string",
    "alias": "string",
    "category": "string",
    "type": "internal",
    "collection_id": "string",
    "folder_id": "string",
    "tags": [
    "string"
    ],
    "description": "string",
    "markings": [
    "string"
    ],
    "created_at": 0,
    "updated_at": 0,
    "owners": [
    {
    "id": "string",
    "type": "user",
    "display_name": "string",
    "avatar_url": "string",
    "avatar_config": {},
    "email": "user@example.com"
    }
    ],
    "my_share_scope": "owner",
    "protocol": "openai-embeddings",
    "deployment": {
    "image": "string",
    "artifact_version": "string",
    "command": [
    "string"
    ],
    "args": [
    "string"
    ],
    "port": 8080,
    "cpu": "string",
    "memory": "string",
    "gpu": 0,
    "replicas": 1,
    "health_path": "/healthz",
    "env": {},
    "node_selector": {},
    "tolerations": [
    {
    "key": "string",
    "operator": "Equal",
    "value": "string",
    "effect": "NoSchedule",
    "toleration_seconds": 0
    }
    ]
    },
    "url": "string",
    "auth": {
    "kind": "none",
    "secret_ref": "string",
    "header": "Authorization",
    "prefix": "Bearer "
    },
    "model": "string",
    "ready": false
    }
    ],
    "next_cursor": "string",
    "has_more": false
    }