getUnscannedArtifact

Retrieves detailed information about a specific unscanned artifact.

Examples

query GetUnscannedArtifact($getUnscannedArtifactInput: GetUnscannedArtifactInput) {
  getUnscannedArtifact(getUnscannedArtifactInput: $getUnscannedArtifactInput) {
    id
    artifactId
    registryType
    registryName
    registryLink
    imageName
    imageTags
    imageCreationDate
    imageDigest
    reason
    error
    scanId
    cloudData {
      cloudIdentifier
      link
      lastExecutionTime
      lastModifiedTime
      account
      zone
      cluster
      cloudDescription {
        type
        subType
        cloudEntityAttributes {
          ... on ECS {
            os
            cpu
            memory
            containers
            registeredAt
            registeredBy
            account
            zone
          }
        }
      }
    }
  }
}

Variables

This is an example input showing all available input fields. Only fields marked as required in the schema are mandatory.

Arguments

You can use the following argument(s) to customize your getUnscannedArtifact query.

Argument
Description
Supported fields

getUnscannedArtifactInput GetUnscannedArtifactInput

Input to retrieve a specific unscanned artifact

artifactId String

Fields

Return type: UnscannedArtifact

You can use the following field(s) to specify what information your getUnscannedArtifact query will return. Please note that some fields may have their own subfields.

Field
Description
Supported fields

id String

Unique identifier of the unscanned artifact

artifactId String

Unique identifier of the artifact

registryType String

Type of the registry

registryName String

Name of the registry

registryLink String

Link to the registry

imageName String

Name of the image

imageTags [String]

Tags of the image

imageCreationDate String

Creation date of the image

imageDigest String

Digest of the image

reason String

Reason for the unscanned artifact

error String

Error message for the unscanned artifact

scanId String

Scan identifier

Cloud data for the unscanned artifact

cloudIdentifier String link String lastExecutionTime Float lastModifiedTime Float account String zone String cluster String cloudDescription CloudDescription

Last updated