Skip to content

List artifact deployment records

GET
/orgs/{org}/artifacts/{subject_digest}/metadata/deployment-records

List deployment records for an artifact metadata associated with an organization.

API method documentation

org
required
string

The organization name. The name is not case sensitive.

subject_digest
required
string
>= 71 characters <= 71 characters /^sha256:[a-f0-9]{64}$/

The SHA256 digest of the artifact, in the form sha256:HEX_DIGEST.

Successful response

Media type application/json
object
total_count

The number of deployment records for this digest and organization

integer
deployment_records
Array<object>
Artifact Deployment Record

Artifact Metadata Deployment Record

object
id
integer
digest
string
logical_environment
string
physical_environment
string
cluster
string
deployment_name
string
tags
object
key
additional properties
string
runtime_risks

A list of runtime risks associated with the deployment.

Array<string>
<= 4 items unique items
Allowed values: critical-resource internet-exposed lateral-movement sensitive-data
created_at
string
updated_at
string
attestation_id

The ID of the provenance attestation associated with the deployment record.

integer
nullable
Examples
Example default
{
"total_count": 1,
"deployment_records": [
{
"id": 123,
"digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72",
"logical_environment": "prod",
"physical_environment": "pacific-east",
"cluster": "moda-1",
"deployment_name": "prod-deployment",
"tags": {
"data": "sensitive"
},
"created": "2011-01-26T19:14:43Z",
"updated_at": "2011-01-26T19:14:43Z",
"attestation_id": 456
}
]
}