Class: Google::Apis::BigqueryV2::ScriptStackFrame
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::ScriptStackFrame
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigquery_v2/classes.rb,
generated/google/apis/bigquery_v2/representations.rb,
generated/google/apis/bigquery_v2/representations.rb
Instance Attribute Summary collapse
-
#end_column ⇒ Fixnum
[Output-only] One-based end column.
-
#end_line ⇒ Fixnum
[Output-only] One-based end line.
-
#procedure_id ⇒ String
[Output-only] Name of the active procedure, empty if in a top-level script.
-
#start_column ⇒ Fixnum
[Output-only] One-based start column.
-
#start_line ⇒ Fixnum
[Output-only] One-based start line.
-
#text ⇒ String
[Output-only] Text of the current statement/expression.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ScriptStackFrame
constructor
A new instance of ScriptStackFrame.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ScriptStackFrame
Returns a new instance of ScriptStackFrame.
5343 5344 5345 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 5343 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_column ⇒ Fixnum
[Output-only] One-based end column.
Corresponds to the JSON property endColumn
5316 5317 5318 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 5316 def end_column @end_column end |
#end_line ⇒ Fixnum
[Output-only] One-based end line.
Corresponds to the JSON property endLine
5321 5322 5323 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 5321 def end_line @end_line end |
#procedure_id ⇒ String
[Output-only] Name of the active procedure, empty if in a top-level script.
Corresponds to the JSON property procedureId
5326 5327 5328 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 5326 def procedure_id @procedure_id end |
#start_column ⇒ Fixnum
[Output-only] One-based start column.
Corresponds to the JSON property startColumn
5331 5332 5333 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 5331 def start_column @start_column end |
#start_line ⇒ Fixnum
[Output-only] One-based start line.
Corresponds to the JSON property startLine
5336 5337 5338 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 5336 def start_line @start_line end |
#text ⇒ String
[Output-only] Text of the current statement/expression.
Corresponds to the JSON property text
5341 5342 5343 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 5341 def text @text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5348 5349 5350 5351 5352 5353 5354 5355 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 5348 def update!(**args) @end_column = args[:end_column] if args.key?(:end_column) @end_line = args[:end_line] if args.key?(:end_line) @procedure_id = args[:procedure_id] if args.key?(:procedure_id) @start_column = args[:start_column] if args.key?(:start_column) @start_line = args[:start_line] if args.key?(:start_line) @text = args[:text] if args.key?(:text) end |