Get build image tag list

Get build image tag list

get

Get the list of image tags for the specified build.

Path parameters
buildSeqinteger · int32Required
Query parameters
orderColumnstringOptional

Sorting criteria column('TAG' or 'IMAGE_SIZE' or 'END_TIME')(default : 'END_TIME')

orderstringOptional

Sorting Order('DESC' or 'ASC')(default : 'DESC)

Responses
200
OK
*/*
get
GET /v1/build/{buildSeq}/images HTTP/1.1
Host: 
Accept: */*
200

OK

[
  {
    "buildSeq": 1,
    "registryImagePath": "dev/build-sapi-test-gradle",
    "registryProjectId": 27,
    "registryName": "dev",
    "imageName": "build-api-test-gradle",
    "externalRegistrySeq": 0,
    "tags": [
      {
        "buildRunSeq": 1,
        "tag": "1.4",
        "runDesc": "bulid run test",
        "imageUrl": "dev.cocktailcloud.io/ops/buil-dapi-test-gradle",
        "imageSize": 133745493,
        "imageDigest": "sha256:30c1930cbee0c55a2ab23708866b8b9c6f555b17382df716d1e675eefbf5083b",
        "beginTime": "2022-12-02T08:42:43.000+00:00",
        "endTime": "2022-12-02T08:43:40.000+00:00",
        "buildServerName": ""
      }
    ]
  }
]

Last updated

Was this helpful?