class Google::Apis::BigqueryV2::JobStatistics3
Attributes
input_file_bytes[RW]
- Output-only
-
Number of bytes of source data in a load job.
Corresponds to the JSON property `inputFileBytes` @return [String]
input_files[RW]
- Output-only
-
Number of source files in a load job.
Corresponds to the JSON property `inputFiles` @return [String]
output_bytes[RW]
- 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 [String]
output_rows[RW]
- 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 [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/bigquery_v2/classes.rb, line 1741 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/bigquery_v2/classes.rb, line 1746 def update!(**args) @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