Class: Google::Apis::ClouderrorreportingV1beta1::ErrorGroup
- Inherits:
-
Object
- Object
- Google::Apis::ClouderrorreportingV1beta1::ErrorGroup
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/clouderrorreporting_v1beta1/classes.rb,
lib/google/apis/clouderrorreporting_v1beta1/representations.rb,
lib/google/apis/clouderrorreporting_v1beta1/representations.rb
Overview
Description of a group of similar error events.
Instance Attribute Summary collapse
-
#group_id ⇒ String
Group IDs are unique for a given project.
-
#name ⇒ String
The group resource name.
-
#resolution_status ⇒ String
Error group's resolution status.
-
#tracking_issues ⇒ Array<Google::Apis::ClouderrorreportingV1beta1::TrackingIssue>
Associated tracking issues.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ErrorGroup
constructor
A new instance of ErrorGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ErrorGroup
Returns a new instance of ErrorGroup.
162 163 164 |
# File 'lib/google/apis/clouderrorreporting_v1beta1/classes.rb', line 162 def initialize(**args) update!(**args) end |
Instance Attribute Details
#group_id ⇒ String
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
138 139 140 |
# File 'lib/google/apis/clouderrorreporting_v1beta1/classes.rb', line 138 def group_id @group_id end |
#name ⇒ String
The group resource name. Written as projects/projectID/groups/group_id`.
Example:projects/my-project-123/groups/my-groupIn the group resource name,
thegroup_idis a unique identifier for a particular error group. The
identifier is derived from key parts of the error-log content and is treated
as Service Data. For information about how Service Data is handled, see [
Google Cloud Privacy Notice](https://cloud.google.com/terms/cloud-privacy-
notice).
Corresponds to the JSON propertyname`
149 150 151 |
# File 'lib/google/apis/clouderrorreporting_v1beta1/classes.rb', line 149 def name @name end |
#resolution_status ⇒ String
Error group's resolution status. An unspecified resolution status will be
interpreted as OPEN
Corresponds to the JSON property resolutionStatus
155 156 157 |
# File 'lib/google/apis/clouderrorreporting_v1beta1/classes.rb', line 155 def resolution_status @resolution_status end |
#tracking_issues ⇒ Array<Google::Apis::ClouderrorreportingV1beta1::TrackingIssue>
Associated tracking issues.
Corresponds to the JSON property trackingIssues
160 161 162 |
# File 'lib/google/apis/clouderrorreporting_v1beta1/classes.rb', line 160 def tracking_issues @tracking_issues end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
167 168 169 170 171 172 |
# File 'lib/google/apis/clouderrorreporting_v1beta1/classes.rb', line 167 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 |