Class: Google::Apis::BigqueryV2::JobStatistics5

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ JobStatistics5

Returns a new instance of JobStatistics5.



5185
5186
5187
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5185

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

Instance Attribute Details

#copied_logical_bytesFixnum

[Output-only] Number of logical bytes copied to the destination table. Corresponds to the JSON property copiedLogicalBytes

Returns:

  • (Fixnum)


5178
5179
5180
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5178

def copied_logical_bytes
  @copied_logical_bytes
end

#copied_rowsFixnum

[Output-only] Number of rows copied to the destination table. Corresponds to the JSON property copiedRows

Returns:

  • (Fixnum)


5183
5184
5185
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5183

def copied_rows
  @copied_rows
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5190
5191
5192
5193
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5190

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