OBJECT

FindingMutation

Defines Mutations related to the Findings Sub-System

link GraphQL Schema definition

  • type FindingMutation {
  • # Approve or Deny Finding Suppression request.
  • #
  • # **NOTE:** This API/functionality is in Beta, this functionality is a candidate
  • # for a stable API but we reserve the right to fix issues including modifying the
  • # schema if required.
  • #
  • # Arguments
  • # input: [Not documented]
  • approveSuppression(input: FindingApproveSuppressionInput!): FindingSuppression!
  • # Bulk Finding Suppressions operation
  • #
  • # **NOTE:** This API/functionality is in Beta, this functionality is a candidate
  • # for a stable API but we reserve the right to fix issues including modifying the
  • # schema if required.
  • #
  • # Arguments
  • # input: [Not documented]
  • bulkSuppressions(input: [FindingBulkSuppressionInput!]!): [FindingBulkSuppressionPayload!]!
  • # Request change of Active Finding Suppression
  • #
  • # **NOTE:** This API/functionality is in Beta, this functionality is a candidate
  • # for a stable API but we reserve the right to fix issues including modifying the
  • # schema if required.
  • #
  • # Arguments
  • # input: [Not documented]
  • changeSuppression(input: FindingChangeSuppressionInput!): FindingSuppression!
  • # Create Report Configuration
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • createReportConfiguration(
  • input: FindingCreateReportConfigurationInput!
  • ): FindingReportConfiguration!
  • # Create Finding Suppression
  • #
  • # **NOTE:** This API/functionality is in Beta, this functionality is a candidate
  • # for a stable API but we reserve the right to fix issues including modifying the
  • # schema if required.
  • #
  • # Arguments
  • # input: [Not documented]
  • createSuppression(input: FindingCreateSuppressionInput!): FindingSuppression!
  • # Create Suppression Template
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • createSuppressionTemplate(
  • input: FindingCreateSuppressionTemplateInput!
  • ): FindingSuppressionTemplate!
  • # Delete a Report
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • deleteReport(input: FindingDeleteInput): ID
  • # Delete Report Configuration
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • deleteReportConfiguration(input: FindingDeleteInput): ID
  • # Delete Finding Suppression
  • #
  • # **NOTE:** This API/functionality is in Beta, this functionality is a candidate
  • # for a stable API but we reserve the right to fix issues including modifying the
  • # schema if required.
  • #
  • # Arguments
  • # input: [Not documented]
  • deleteSuppression(input: FindingDeleteInput!): FindingSuppression!
  • # Delete Suppression template
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • deleteSuppressionTemplate(input: FindingDeleteInput!): FindingSuppressionTemplate!
  • # Generate Download Report Link
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • generateDownloadReportLink(
  • input: FindingDownloadReportInput
  • ): FindingDownloadReportResponse!
  • # Generate report
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • generateReport(input: FindingGenerateReportInput): FindingReport!
  • # Patch an existing Report
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • patchReport(input: FindingPatchReportInput): FindingReport!
  • # Patch Report Configuration
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • patchReportConfiguration(
  • input: FindingPatchReportConfigurationInput
  • ): FindingReportConfiguration!
  • # Patch Finding Suppression
  • #
  • # **NOTE:** This API/functionality is in Beta, this functionality is a candidate
  • # for a stable API but we reserve the right to fix issues including modifying the
  • # schema if required.
  • #
  • # Arguments
  • # input: [Not documented]
  • patchSuppression(input: FindingPatchSuppressionInput!): FindingSuppression!
  • # Resubmit denied suppression
  • #
  • # **NOTE:** This API/functionality is in Beta, this functionality is a candidate
  • # for a stable API but we reserve the right to fix issues including modifying the
  • # schema if required.
  • #
  • # Arguments
  • # input: [Not documented]
  • resubmitSuppression(
  • input: FindingResubmitSuppressionInput!
  • ): FindingSuppression!
  • # Update Report Configuration
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • updateReportConfiguration(
  • input: FindingUpdateReportConfigurationInput
  • ): FindingReportConfiguration!
  • # Update Finding Suppression
  • #
  • # **NOTE:** This API/functionality is in Beta, this functionality is a candidate
  • # for a stable API but we reserve the right to fix issues including modifying the
  • # schema if required.
  • #
  • # Arguments
  • # input: [Not documented]
  • updateSuppression(input: FindingUpdateSuppressionInput!): FindingSuppression!
  • # Update Suppression Template
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • updateSuppressionTemplate(
  • input: FindingUpdateSuppressionTemplateInput!
  • ): FindingSuppressionTemplate!
  • }

link Require by