Class: Google::Apis::BigqueryV2::IndexPruningStats
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::IndexPruningStats
- 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
-
#base_table ⇒ Google::Apis::BigqueryV2::TableReference
The base table reference.
-
#index_id ⇒ String
The index id.
-
#post_index_pruning_parallel_input_count ⇒ Fixnum
The number of parallel inputs after index pruning.
-
#pre_index_pruning_parallel_input_count ⇒ Fixnum
The number of parallel inputs before index pruning.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IndexPruningStats
constructor
A new instance of IndexPruningStats.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IndexPruningStats
Returns a new instance of IndexPruningStats.
4299 4300 4301 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4299 def initialize(**args) update!(**args) end |
Instance Attribute Details
#base_table ⇒ Google::Apis::BigqueryV2::TableReference
The base table reference.
Corresponds to the JSON property baseTable
4282 4283 4284 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4282 def base_table @base_table end |
#index_id ⇒ String
The index id.
Corresponds to the JSON property indexId
4287 4288 4289 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4287 def index_id @index_id end |
#post_index_pruning_parallel_input_count ⇒ Fixnum
The number of parallel inputs after index pruning.
Corresponds to the JSON property postIndexPruningParallelInputCount
4292 4293 4294 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4292 def post_index_pruning_parallel_input_count @post_index_pruning_parallel_input_count end |
#pre_index_pruning_parallel_input_count ⇒ Fixnum
The number of parallel inputs before index pruning.
Corresponds to the JSON property preIndexPruningParallelInputCount
4297 4298 4299 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4297 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
4304 4305 4306 4307 4308 4309 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4304 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 |