For the complete documentation index, see llms.txt. This page is also available as Markdown.

getIncidentAffectedResources

Deduplicated resources affected by one incident, derived from its evidence (worst-first).

Examples

query GetIncidentAffectedResources($incidentId: String!) {
  getIncidentAffectedResources(incidentId: $incidentId) {
    items {
      resourceName
      kind
      resourceDetail
      appName
      appId
      appType
      resourceOwner
      hitIndicatorValues
      openIssues
      resolvedIssues
      sbomCount
      activeRows
      isRunning
      cloudRunState
      isCloudDeployed
      isPublic
      isInternetExposed
      status
      isStale
      latestAsOf
      lastCodeActivity
      imageCreatedAt
      imageSha
      cloudProvider
      cloudAccountId
      cloudAccountName
      cloudRegions
      cloudClusterNames
      cloudImageCount
      imageCount
    }
    totalCount
  }
}

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

Argument
Description
Supported fields

incidentId String! required

Fields

Return type: IncidentAffectedResources!

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

Field
Description
Supported fields

resourceName String! kind AffectedResourceKind! resourceDetail String appName String appId String appType String resourceOwner String hitIndicatorValues [String!]! openIssues Int! resolvedIssues Int! sbomCount Int! activeRows Int! isRunning Boolean! cloudRunState CloudRunState! isCloudDeployed Boolean! isPublic Boolean! isInternetExposed Boolean! status AffectedResourceStatus! isStale Boolean! latestAsOf DateTime lastCodeActivity DateTime imageCreatedAt DateTime imageSha String cloudProvider String cloudAccountId String cloudAccountName String cloudRegions [String!] cloudClusterNames [String!] cloudImageCount Int imageCount Int

totalCount Int!

Last updated