Class: Google::Apis::BigqueryV2::JobStatistics3
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::JobStatistics3
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigquery_v2/classes.rb,
generated/google/apis/bigquery_v2/representations.rb,
generated/google/apis/bigquery_v2/representations.rb
Instance Attribute Summary collapse
-
#input_file_bytes ⇒ Fixnum
[Output-only] Number of bytes of source data in a load job.
-
#input_files ⇒ Fixnum
[Output-only] Number of source files in a load job.
-
#output_bytes ⇒ Fixnum
[Output-only] Size of the loaded data in bytes.
-
#output_rows ⇒ Fixnum
[Output-only] Number of rows imported in a load job.
Instance Method Summary collapse
-
#initialize(**args) ⇒ JobStatistics3
constructor
A new instance of JobStatistics3.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ JobStatistics3
Returns a new instance of JobStatistics3
1894 1895 1896 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1894 def initialize(**args) update!(**args) end |
Instance Attribute Details
#input_file_bytes ⇒ Fixnum
[Output-only] Number of bytes of source data in a load job.
Corresponds to the JSON property inputFileBytes
1875 1876 1877 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1875 def input_file_bytes @input_file_bytes end |
#input_files ⇒ Fixnum
[Output-only] Number of source files in a load job.
Corresponds to the JSON property inputFiles
1880 1881 1882 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1880 def input_files @input_files end |
#output_bytes ⇒ 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
1886 1887 1888 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1886 def output_bytes @output_bytes end |
#output_rows ⇒ 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
1892 1893 1894 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1892 def output_rows @output_rows end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1899 1900 1901 1902 1903 1904 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1899 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 |