Skip to main content

List container registry artifacts

GET 

/container_registry/repositories/repository/artifacts

Returns a list of all container registry artifacts for a given repository

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 artifacts exists.

    repository[id] string

    The repository for which the artifacts should be returned.

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

    repository[name] string

    The repository for which the artifacts should be returned.

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

    page integer

    Possible values: >= 1

    Default value: 1

    The page number to request. If not provided, the first page will be returned.

    per_page integer

    Possible values: >= 1

    Default value: 30

    The number of items to return per page. If not provided, the default value will be used.

Responses

Returns a list of all container registry artifacts for a given repository

Schema

    pagination

    object

    required

    current_page integer

    The current page

    total_pages integernullable

    The total number of pages

    total integernullable

    The total number of items across all pages

    per_page integer

    The number of items per page

    large_set boolean

    Is this a large set and therefore the total number of records cannot be returned?

    artifacts

    object[]

    required

    The container registry artifacts for the repository

  • Array [

  • id string
    digest string
    size integernullable

    Size of the artifact in bytes

    media_type stringnullable
    os stringnullable
    architecture stringnullable
    variant stringnullable
    annotations object[]
    last_pushed_at integernullable
    last_pulled_at integernullable
    last_reconciled_at integernullable
    tags string[]
    child_ids string[]
  • ]

Loading...