getSingleCloudBomItem

Retrieves detailed information about a specific cloud BOM item.

Examples

query GetSingleCloudBomItem($getSingleCloudBomItemInput: GetSingleCloudBomItem!) {
  getSingleCloudBomItem(getSingleCloudBomItemInput: $getSingleCloudBomItemInput) {
    id
    assetName
    service
    resourceId
    cbomId
    cbomProvider
    resourceType
    resourceName
    accountId
    firstSeen
    cloudProvider
    serviceCategory
    applications {
      id
      name
      type
    }
    isExposed
    imageSource
    registryType
    registryName
    imageScanStatus
    exposurePath {
      type
      name
      cbomId
    }
    accountName
    subService
    region
    resourceTags
    resourceArn
    images {
      name
      hashes {
        hash
        isFromRegistry
      }
      tags
    }
    relatedIssues {
      info
      low
      medium
      high
      critical
      appox
    }
    issuesStats {
      totalIssues
      sourceTools {
        name
        total
      }
      categories {
        name
        total
      }
      severities {
        name
        total
      }
    }
    cluster
    link
    imageHash
    workloads {
      type
      namespace
      name
      cluster
      region
      isExposed
      consoleLink
      exposurePath {
        type
        name
        cbomId
      }
    }
    artifactIds
  }
}

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 getSingleCloudBomItem query.

Argument
Description
Supported fields

getSingleCloudBomItemInput GetSingleCloudBomItem! required

Parameters identifying which specific cloud BOM item to retrieve

id String! scanId String

Fields

Return type: CloudItem

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

Field
Description
Supported fields

id String

Unique identifier for the cloud item

assetName String

Name of the cloud asset or resource

service String

Cloud service type (EC2, S3, Lambda, etc.)

resourceId String

Cloud provider's resource identifier

cbomId String

Cloud Bill of Materials identifier

cbomProvider String

Cloud provider name

resourceType String

Type of cloud resource

resourceName String

Name of the cloud resource

accountId String

Cloud account identifier

firstSeen String

Date when the resource was first discovered

cloudProvider String

Cloud provider (AWS, Azure, GCP, etc.)

serviceCategory String

Category of the cloud service

applications [AppInfo]

Applications associated with this cloud resource

id String name String type String

isExposed String

Whether the resource is exposed to the internet

imageSource String

Source of the container image if applicable

registryType String

Type of container registry

registryName String

Name of the container registry

imageScanStatus String

Status of the image security scan

exposurePath [ExposurePathItem]

Path showing how the resource is exposed

type String name String cbomId String

accountName String

Human-readable name of the cloud account

subService String

Sub-service or component within the main service

region String

Cloud region where the resource is located

resourceTags JSON

Tags associated with the cloud resource

resourceArn String

Amazon Resource Name (ARN) for AWS resources

Container images associated with this resource

name String hashes [CloudItemImageHash] tags [String]

relatedIssues Severities

Security issues found in this resource, categorized by severity

info Int low Int medium Int high Int critical Int appox Int

issuesStats IssuesStats

Statistics about security issues found

totalIssues Int sourceTools [IssueStat] categories [IssueStat] severities [IssueStat]

cluster String

Kubernetes cluster name if applicable

link String

URL link to view the resource in the cloud console

imageHash String

Hash of the container image

workloads [Workload]

Kubernetes workloads associated with this resource

type String namespace String name String cluster String region String isExposed String consoleLink String exposurePath [ExposurePathItem]

artifactIds [String]

List of artifact identifiers associated with this resource

Last updated