Class: Google::Apis::BigqueryreservationV1beta1::Reservation
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryreservationV1beta1::Reservation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigqueryreservation_v1beta1/classes.rb,
lib/google/apis/bigqueryreservation_v1beta1/representations.rb,
lib/google/apis/bigqueryreservation_v1beta1/representations.rb
Overview
A reservation is a mechanism used to guarantee slots to users.
Instance Attribute Summary collapse
-
#creation_time ⇒ String
Output only.
-
#ignore_idle_slots ⇒ Boolean
(also: #ignore_idle_slots?)
If false, any query using this reservation will use idle slots from other reservations within the same admin project.
-
#max_concurrency ⇒ Fixnum
Maximum number of queries that are allowed to run concurrently in this reservation.
-
#name ⇒ String
The resource name of the reservation, e.g.,
projects/*/locations/*/ reservations/team1-prod. -
#slot_capacity ⇒ Fixnum
Minimum slots available to this reservation.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Reservation
constructor
A new instance of Reservation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Reservation
Returns a new instance of Reservation.
379 380 381 |
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 379 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creation_time ⇒ String
Output only. Creation time of the reservation.
Corresponds to the JSON property creationTime
340 341 342 |
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 340 def creation_time @creation_time end |
#ignore_idle_slots ⇒ Boolean Also known as: ignore_idle_slots?
If false, any query using this reservation will use idle slots from other
reservations within the same admin project. If true, a query using this
reservation will execute with the slot capacity specified above at most.
Corresponds to the JSON property ignoreIdleSlots
347 348 349 |
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 347 def ignore_idle_slots @ignore_idle_slots end |
#max_concurrency ⇒ Fixnum
Maximum number of queries that are allowed to run concurrently in this
reservation. Default value is 0 which means that maximum concurrency will be
automatically set based on the reservation size.
Corresponds to the JSON property maxConcurrency
355 356 357 |
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 355 def max_concurrency @max_concurrency end |
#name ⇒ String
The resource name of the reservation, e.g., projects/*/locations/*/
reservations/team1-prod.
Corresponds to the JSON property name
361 362 363 |
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 361 def name @name end |
#slot_capacity ⇒ Fixnum
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 parent's slot
capacity or if total slot capacity of the new reservation and its siblings
exceeds the parent's slot capacity, the request will fail with google.rpc.
Code.RESOURCE_EXHAUSTED.
Corresponds to the JSON property slotCapacity
372 373 374 |
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 372 def slot_capacity @slot_capacity end |
#update_time ⇒ String
Output only. Last update time of the reservation.
Corresponds to the JSON property updateTime
377 378 379 |
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 377 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
384 385 386 387 388 389 390 391 |
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 384 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) @max_concurrency = args[:max_concurrency] if args.key?(:max_concurrency) @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 |