Class: Google::Apis::TpuV2alpha1::Reservation

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

Instance Method Summary collapse

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

#nameString

The reservation name with the format: projects/projectID/locations/location /reservations/reservationID Corresponds to the JSON property name

Returns:

  • (String)


1395
1396
1397
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1395

def name
  @name
end

#standardGoogle::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