Class: Google::Apis::BigqueryV2::IndexPruningStats

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

Overview

Statistics for index pruning.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IndexPruningStats

Returns a new instance of IndexPruningStats.



4623
4624
4625
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4623

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

Instance Attribute Details

#base_tableGoogle::Apis::BigqueryV2::TableReference

The base table reference. Corresponds to the JSON property baseTable



4606
4607
4608
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4606

def base_table
  @base_table
end

#index_idString

The index id. Corresponds to the JSON property indexId

Returns:

  • (String)


4611
4612
4613
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4611

def index_id
  @index_id
end

#post_index_pruning_parallel_input_countFixnum

The number of parallel inputs after index pruning. Corresponds to the JSON property postIndexPruningParallelInputCount

Returns:

  • (Fixnum)


4616
4617
4618
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4616

def post_index_pruning_parallel_input_count
  @post_index_pruning_parallel_input_count
end

#pre_index_pruning_parallel_input_countFixnum

The number of parallel inputs before index pruning. Corresponds to the JSON property preIndexPruningParallelInputCount

Returns:

  • (Fixnum)


4621
4622
4623
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4621

def pre_index_pruning_parallel_input_count
  @pre_index_pruning_parallel_input_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4628
4629
4630
4631
4632
4633
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4628

def update!(**args)
  @base_table = args[:base_table] if args.key?(:base_table)
  @index_id = args[:index_id] if args.key?(:index_id)
  @post_index_pruning_parallel_input_count = args[:post_index_pruning_parallel_input_count] if args.key?(:post_index_pruning_parallel_input_count)
  @pre_index_pruning_parallel_input_count = args[:pre_index_pruning_parallel_input_count] if args.key?(:pre_index_pruning_parallel_input_count)
end