class Google::Apis::BigqueryV2::JobStatistics2::ReservationUsage
Attributes
name[RW]
- Output-only
-
Reservation name or “unreserved” for on-demand resources usage.
Corresponds to the JSON property `name` @return [String]
slot_ms[RW]
- Output-only
-
Slot-milliseconds the job spent in the given reservation.
Corresponds to the JSON property `slotMs` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 4246 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/bigquery_v2/classes.rb, line 4251 def update!(**args) @name = args[:name] if args.key?(:name) @slot_ms = args[:slot_ms] if args.key?(:slot_ms) end