class Google::Apis::BigqueryV2::JobStatistics3
Attributes
- Output-only
-
The number of bad records encountered. Note that if the job has
failed because of more bad records encountered than the maximum allowed in the load job configuration, then this number can be less than the total number of bad records present in the input data. Corresponds to the JSON property `badRecords` @return [Fixnum]
- Output-only
-
Number of bytes of source data in a load job.
Corresponds to the JSON property `inputFileBytes` @return [Fixnum]
- Output-only
-
Number of source files in a load job.
Corresponds to the JSON property `inputFiles` @return [Fixnum]
- Output-only
-
Size of the loaded data in bytes. Note that while a load job is
in the running state, this value may change. Corresponds to the JSON property `outputBytes` @return [Fixnum]
- Output-only
-
Number of rows imported in a load job. Note that while an import
job is in the running state, this value may change. Corresponds to the JSON property `outputRows` @return [Fixnum]
Public Class Methods
# File lib/google/apis/bigquery_v2/classes.rb, line 4292 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/bigquery_v2/classes.rb, line 4297 def update!(**args) @bad_records = args[:bad_records] if args.key?(:bad_records) @input_file_bytes = args[:input_file_bytes] if args.key?(:input_file_bytes) @input_files = args[:input_files] if args.key?(:input_files) @output_bytes = args[:output_bytes] if args.key?(:output_bytes) @output_rows = args[:output_rows] if args.key?(:output_rows) end