Class: Google::Apis::ToolresultsV1beta3::StackTrace
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ToolresultsV1beta3::StackTrace
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/toolresults_v1beta3/classes.rb,
 generated/google/apis/toolresults_v1beta3/representations.rb,
 generated/google/apis/toolresults_v1beta3/representations.rb
Overview
A stacktrace.
Instance Attribute Summary collapse
- 
  
    
      #cluster_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Exception cluster ID Corresponds to the JSON property clusterId.
- 
  
    
      #exception  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The stack trace message. 
- 
  
    
      #report_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Exception report ID Corresponds to the JSON property reportId.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ StackTrace 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of StackTrace. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ StackTrace
Returns a new instance of StackTrace
| 1720 1721 1722 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1720 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#cluster_id ⇒ String
Exception cluster ID
Corresponds to the JSON property clusterId
| 1707 1708 1709 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1707 def cluster_id @cluster_id end | 
#exception ⇒ String
The stack trace message.
Required
Corresponds to the JSON property exception
| 1713 1714 1715 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1713 def exception @exception end | 
#report_id ⇒ String
Exception report ID
Corresponds to the JSON property reportId
| 1718 1719 1720 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1718 def report_id @report_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1725 1726 1727 1728 1729 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1725 def update!(**args) @cluster_id = args[:cluster_id] if args.key?(:cluster_id) @exception = args[:exception] if args.key?(:exception) @report_id = args[:report_id] if args.key?(:report_id) end |