Skip to main content

Get container registry artifact details

GET 

/container_registry/artifacts/artifact

Returns full details for a given container registry artifact

Scopes

  • container_registry
  • container_registry:read

OAuth2 Scopes

When using OAuth2 authentication, scopes are prefixed with api.katapult.io/core/v1/.

Request

Query Parameters

    region[id] string

    The region in which the artifact to be returned exists.

    repository[id] string

    The repository in which the artifact to be returned exists.

    All 'repository[]' params are mutually exclusive, only one can be provided.

    repository[name] string

    The repository in which the artifact to be returned exists.

    All 'repository[]' params are mutually exclusive, only one can be provided.

    artifact[id] string

    The artifact to be returned.

    All 'artifact[]' params are mutually exclusive, only one can be provided.

    artifact[digest] string

    The artifact to be returned.

    All 'artifact[]' params are mutually exclusive, only one can be provided.

    artifact[tag] string

    The artifact to be returned.

    All 'artifact[]' params are mutually exclusive, only one can be provided.

Responses

Returns full details for a given container registry artifact

Schema

    artifact

    object

    required

    id string
    digest string
    size integernullable

    Size of the artifact in bytes

    media_type stringnullable
    os stringnullable
    architecture stringnullable
    variant stringnullable

    annotations

    object[]

  • Array [

  • key stringrequired
    value string
  • ]

  • last_pushed_at integernullable
    last_pulled_at integernullable
    last_reconciled_at integernullable
    tags string[]
    child_ids string[]

    blobs

    object[]

    required

    The blobs for the artifact

  • Array [

  • digest string
    size integer

    Size of the blob in bytes

    media_type string
  • ]

  • tags

    object[]

    required

    The tags for the artifact

  • Array [

  • name string
    last_pushed_at integernullable
    last_pulled_at integernullable
  • ]

Loading...