Class: Google::Apis::BigqueryV2::ExportDataStatistics

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 the EXPORT DATA statement as part of Query Job. EXTRACT JOB statistics are populated in JobStatistics4.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExportDataStatistics

Returns a new instance of ExportDataStatistics.



2943
2944
2945
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2943

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

Instance Attribute Details

#file_countFixnum

Number of destination files generated in case of EXPORT DATA statement only. Corresponds to the JSON property fileCount

Returns:

  • (Fixnum)


2935
2936
2937
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2935

def file_count
  @file_count
end

#row_countFixnum

[Alpha] Number of destination rows generated in case of EXPORT DATA statement only. Corresponds to the JSON property rowCount

Returns:

  • (Fixnum)


2941
2942
2943
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2941

def row_count
  @row_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2948
2949
2950
2951
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2948

def update!(**args)
  @file_count = args[:file_count] if args.key?(:file_count)
  @row_count = args[:row_count] if args.key?(:row_count)
end