FindingsRefinementActivity

The activity for a specific findings refinement.

JSON representation
{
  "findings_refinement": string,

  // Union field Activity can be only one of the following:
  "detection_exclusion_activity": {
    object (DetectionExclusionActivity)
  }
  // End of list of possible types for union field Activity.
}
Fields
findings_refinement

string

Required. Full resource name for the findings refinement this activity corresponds to. Format: projects/{project}/locations/{region}/instances/{instance}/findingsRefinements/{findings_refinement}

Union field Activity. The activity for the findings refinement. Activity can be only one of the following:
detection_exclusion_activity

object (DetectionExclusionActivity)

The activity for the detection exclusion.

DetectionExclusionActivity

The activity for a findings refinement that is a detection exclusion. The activity is broken down per detector.

JSON representation
{
  "detection_exclusion_detector_activities": [
    {
      object (DetectionExclusionDetectorActivity)
    }
  ]
}
Fields
detection_exclusion_detector_activities[]

object (DetectionExclusionDetectorActivity)

The activity for the detection exclusion broken down by detector.

DetectionExclusionDetectorActivity

The activity for a findings refinement that is a detection exclusion broken down for one specific detector.

JSON representation
{
  "excluded_detection_count": string,
  "total_detection_count": string,

  // Union field detector_name can be only one of the following:
  "curated_rule": string,
  "curated_rule_set": string
  // End of list of possible types for union field detector_name.
}
Fields
excluded_detection_count

string (int64 format)

The number of detections for the detector that were excluded by the detection exclusion.

total_detection_count

string (int64 format)

The total number of detections found by the detector. This includes both excluded detections and non-excluded detections.

Union field detector_name.

detector_name can be only one of the following:

curated_rule

string

Full resource name for the curated rule this activity corresponds to. Format: projects/{project}/locations/{location}/instances/{instance}/curatedRules/{rule}

curated_rule_set

string

Full resource name for the curated rule set this activity corresponds to. Format: projects/{project}/locations/{location}/instances/{instance}/curatedRuleSetCategories/{curated_rule_set_category}/curatedRuleSets/{curated_rule_set}