Class: Google::Apis::BigqueryV2::JobStatistics5
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::JobStatistics5
- 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
Instance Attribute Summary collapse
-
#copied_logical_bytes ⇒ Fixnum
[Output-only] Number of logical bytes copied to the destination table.
-
#copied_rows ⇒ Fixnum
[Output-only] Number of rows copied to the destination table.
Instance Method Summary collapse
-
#initialize(**args) ⇒ JobStatistics5
constructor
A new instance of JobStatistics5.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ JobStatistics5
Returns a new instance of JobStatistics5.
5051 5052 5053 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5051 def initialize(**args) update!(**args) end |
Instance Attribute Details
#copied_logical_bytes ⇒ Fixnum
[Output-only] Number of logical bytes copied to the destination table.
Corresponds to the JSON property copied_logical_bytes
5044 5045 5046 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5044 def copied_logical_bytes @copied_logical_bytes end |
#copied_rows ⇒ Fixnum
[Output-only] Number of rows copied to the destination table.
Corresponds to the JSON property copied_rows
5049 5050 5051 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5049 def copied_rows @copied_rows end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5056 5057 5058 5059 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5056 def update!(**args) @copied_logical_bytes = args[:copied_logical_bytes] if args.key?(:copied_logical_bytes) @copied_rows = args[:copied_rows] if args.key?(:copied_rows) end |