class Google::Apis::BigqueryV2::ScriptStatistics
Attributes
evaluation_kind[RW]
- Output-only
-
Whether this child job was a statement or expression.
Corresponds to the JSON property `evaluationKind` @return [String]
stack_frames[RW]
Stack trace showing the line/column/procedure name of each frame on the stack at the point where the current evaluation happened. The leaf frame is first, the primary script is last. Never empty. Corresponds to the JSON property `stackFrames` @return [Array<Google::Apis::BigqueryV2::ScriptStackFrame>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 5920 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/bigquery_v2/classes.rb, line 5925 def update!(**args) @evaluation_kind = args[:evaluation_kind] if args.key?(:evaluation_kind) @stack_frames = args[:stack_frames] if args.key?(:stack_frames) end