Class: Google::Apis::BigqueryreservationV1beta1::BiReservation

Inherits:
Object
  • Object
show all
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

Represents a BI Reservation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BiReservation

Returns a new instance of BiReservation.



92
93
94
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 92

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

Instance Attribute Details

#nameString

The resource name of the singleton BI reservation. Reservation names have the form projects/project_id/locations/location_id/biReservation. Corresponds to the JSON property name

Returns:

  • (String)


75
76
77
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 75

def name
  @name
end

#preferred_tablesArray<Google::Apis::BigqueryreservationV1beta1::TableReference>

Preferred tables to use BI capacity for. Corresponds to the JSON property preferredTables



80
81
82
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 80

def preferred_tables
  @preferred_tables
end

#sizeFixnum

Size of a reservation, in bytes. Corresponds to the JSON property size

Returns:

  • (Fixnum)


85
86
87
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 85

def size
  @size
end

#update_timeString

Output only. The last update timestamp of a reservation. Corresponds to the JSON property updateTime

Returns:

  • (String)


90
91
92
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 90

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



97
98
99
100
101
102
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 97

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @preferred_tables = args[:preferred_tables] if args.key?(:preferred_tables)
  @size = args[:size] if args.key?(:size)
  @update_time = args[:update_time] if args.key?(:update_time)
end