Class: Google::Apis::TpuV2alpha1::Reservation
- Inherits:
-
Object
- Object
- Google::Apis::TpuV2alpha1::Reservation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/tpu_v2alpha1/classes.rb,
lib/google/apis/tpu_v2alpha1/representations.rb,
lib/google/apis/tpu_v2alpha1/representations.rb
Overview
A reservation describes the amount of a resource 'allotted' for a defined period of time.
Instance Attribute Summary collapse
-
#name ⇒ String
The reservation name with the format: projects/
projectID/locations/location/reservations/reservationIDCorresponds to the JSON propertyname. -
#standard ⇒ Google::Apis::TpuV2alpha1::Standard
Corresponds to the JSON property
standard.
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.
1402 1403 1404 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1402 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
The reservation name with the format: projects/projectID/locations/location
/reservations/reservationID
Corresponds to the JSON property name
1395 1396 1397 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1395 def name @name end |
#standard ⇒ Google::Apis::TpuV2alpha1::Standard
Corresponds to the JSON property standard
1400 1401 1402 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1400 def standard @standard end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1407 1408 1409 1410 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1407 def update!(**args) @name = args[:name] if args.key?(:name) @standard = args[:standard] if args.key?(:standard) end |