class Google::Apis::ClouderrorreportingV1beta1::ErrorGroup

Description of a group of similar error events.

Attributes

group_id[RW]

Group IDs are unique for a given project. If the same kind of error occurs in different service contexts, it will receive the same group ID. Corresponds to the JSON property `groupId` @return [String]

name[RW]

The group resource name. Example: projects/my-project-123/groups/ CNSgkpnppqKCUw Corresponds to the JSON property `name` @return [String]

resolution_status[RW]

Error group's resolution status. An unspecified resolution status will be interpreted as OPEN Corresponds to the JSON property `resolutionStatus` @return [String]

tracking_issues[RW]

Associated tracking issues. Corresponds to the JSON property `trackingIssues` @return [Array<Google::Apis::ClouderrorreportingV1beta1::TrackingIssue>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/clouderrorreporting_v1beta1/classes.rb, line 157
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/clouderrorreporting_v1beta1/classes.rb, line 162
def update!(**args)
  @group_id = args[:group_id] if args.key?(:group_id)
  @name = args[:name] if args.key?(:name)
  @resolution_status = args[:resolution_status] if args.key?(:resolution_status)
  @tracking_issues = args[:tracking_issues] if args.key?(:tracking_issues)
end