List artifact deployment records
GET
/orgs/{org}/artifacts/{subject_digest}/metadata/deployment-records
List deployment records for an artifact metadata associated with an organization.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”org
required
string
The organization name. The name is not case sensitive.
subject_digest
required
string
The SHA256 digest of the artifact, in the form sha256:HEX_DIGEST.
Responses
Section titled “Responses”Successful response
Media typeapplication/json
object
total_count
The number of deployment records for this digest and organization
integer
deployment_records
Array<object>
Artifact Deployment RecordArtifact 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>
created_at
string
updated_at
string
attestation_id
The ID of the provenance attestation associated with the deployment record.
integer
Examples
Exampledefault
{ "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 } ]}