Class: Google::Apis::ClouderrorreportingV1beta1::ErrorGroup
- Inherits:
-
Object
- Object
- Google::Apis::ClouderrorreportingV1beta1::ErrorGroup
- Defined in:
- generated/google/apis/clouderrorreporting_v1beta1/classes.rb,
generated/google/apis/clouderrorreporting_v1beta1/representations.rb,
generated/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.
-
#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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ErrorGroup
Returns a new instance of ErrorGroup
343 344 345 |
# File 'generated/google/apis/clouderrorreporting_v1beta1/classes.rb', line 343 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
330 331 332 |
# File 'generated/google/apis/clouderrorreporting_v1beta1/classes.rb', line 330 def group_id @group_id end |
#name ⇒ String
The group resource name.
Example: projects/my-project-123/groups/my-groupid
Corresponds to the JSON property name
341 342 343 |
# File 'generated/google/apis/clouderrorreporting_v1beta1/classes.rb', line 341 def name @name end |
#tracking_issues ⇒ Array<Google::Apis::ClouderrorreportingV1beta1::TrackingIssue>
Associated tracking issues.
Corresponds to the JSON property trackingIssues
335 336 337 |
# File 'generated/google/apis/clouderrorreporting_v1beta1/classes.rb', line 335 def tracking_issues @tracking_issues end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
348 349 350 351 352 |
# File 'generated/google/apis/clouderrorreporting_v1beta1/classes.rb', line 348 def update!(**args) @group_id = args[:group_id] if args.key?(:group_id) @tracking_issues = args[:tracking_issues] if args.key?(:tracking_issues) @name = args[:name] if args.key?(:name) end |