Class: Google::Apis::BigqueryV2::ScriptStackFrame

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ScriptStackFrame

Returns a new instance of ScriptStackFrame.



5666
5667
5668
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5666

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#end_columnFixnum

[Output-only] One-based end column. Corresponds to the JSON property endColumn

Returns:

  • (Fixnum)


5639
5640
5641
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5639

def end_column
  @end_column
end

#end_lineFixnum

[Output-only] One-based end line. Corresponds to the JSON property endLine

Returns:

  • (Fixnum)


5644
5645
5646
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5644

def end_line
  @end_line
end

#procedure_idString

[Output-only] Name of the active procedure, empty if in a top-level script. Corresponds to the JSON property procedureId

Returns:

  • (String)


5649
5650
5651
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5649

def procedure_id
  @procedure_id
end

#start_columnFixnum

[Output-only] One-based start column. Corresponds to the JSON property startColumn

Returns:

  • (Fixnum)


5654
5655
5656
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5654

def start_column
  @start_column
end

#start_lineFixnum

[Output-only] One-based start line. Corresponds to the JSON property startLine

Returns:

  • (Fixnum)


5659
5660
5661
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5659

def start_line
  @start_line
end

#textString

[Output-only] Text of the current statement/expression. Corresponds to the JSON property text

Returns:

  • (String)


5664
5665
5666
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5664

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5671
5672
5673
5674
5675
5676
5677
5678
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5671

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