Class: Google::Apis::BigqueryreservationV1::Reservation

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigqueryreservation_v1/classes.rb,
lib/google/apis/bigqueryreservation_v1/representations.rb,
lib/google/apis/bigqueryreservation_v1/representations.rb

Overview

A reservation is a mechanism used to guarantee slots to users.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Reservation

Returns a new instance of Reservation.



355
356
357
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 355

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

Instance Attribute Details

#creation_timeString

Output only. Creation time of the reservation. Corresponds to the JSON property creationTime

Returns:

  • (String)


320
321
322
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 320

def creation_time
  @creation_time
end

#ignore_idle_slotsBoolean Also known as: ignore_idle_slots?

If false, any query or pipeline job using this reservation will use idle slots from other reservations within the same admin project. If true, a query or pipeline job using this reservation will execute with the slot capacity specified in the slot_capacity field at most. Corresponds to the JSON property ignoreIdleSlots

Returns:

  • (Boolean)


328
329
330
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 328

def ignore_idle_slots
  @ignore_idle_slots
end

#nameString

The resource name of the reservation, e.g., projects/*/locations/*/ reservations/team1-prod. Corresponds to the JSON property name

Returns:

  • (String)


335
336
337
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 335

def name
  @name
end

#slot_capacityFixnum

Minimum slots available to this reservation. A slot is a unit of computational power in BigQuery, and serves as the unit of parallelism. Queries using this reservation might use more slots during runtime if ignore_idle_slots is set to false. If the new reservation's slot capacity exceed the project's slot capacity or if total slot capacity of the new reservation and its siblings exceeds the project's slot capacity, the request will fail with google.rpc. Code.RESOURCE_EXHAUSTED. NOTE: for reservations in US or EU multi-regions slot capacity constraints are checked separately for default and auxiliary regions. See multi_region_auxiliary flag for more details. Corresponds to the JSON property slotCapacity

Returns:

  • (Fixnum)


348
349
350
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 348

def slot_capacity
  @slot_capacity
end

#update_timeString

Output only. Last update time of the reservation. Corresponds to the JSON property updateTime

Returns:

  • (String)


353
354
355
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 353

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



360
361
362
363
364
365
366
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 360

def update!(**args)
  @creation_time = args[:creation_time] if args.key?(:creation_time)
  @ignore_idle_slots = args[:ignore_idle_slots] if args.key?(:ignore_idle_slots)
  @name = args[:name] if args.key?(:name)
  @slot_capacity = args[:slot_capacity] if args.key?(:slot_capacity)
  @update_time = args[:update_time] if args.key?(:update_time)
end