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

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ScriptStackFrame

Returns a new instance of ScriptStackFrame



4644
4645
4646
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4644

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)


4617
4618
4619
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4617

def end_column
  @end_column
end

#end_lineFixnum

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

Returns:

  • (Fixnum)


4622
4623
4624
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4622

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)


4627
4628
4629
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4627

def procedure_id
  @procedure_id
end

#start_columnFixnum

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

Returns:

  • (Fixnum)


4632
4633
4634
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4632

def start_column
  @start_column
end

#start_lineFixnum

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

Returns:

  • (Fixnum)


4637
4638
4639
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4637

def start_line
  @start_line
end

#textString

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

Returns:

  • (String)


4642
4643
4644
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4642

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4649
4650
4651
4652
4653
4654
4655
4656
# File 'generated/google/apis/bigquery_v2/classes.rb', line 4649

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