Class: Google::Apis::ComputeAlpha::FutureReservationStatus
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::FutureReservationStatus
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
[Output only] Represents status related to the future reservation.
Instance Attribute Summary collapse
-
#auto_created_reservations ⇒ Array<String>
Fully qualified urls of the automatically created reservations at start_time.
-
#fulfilled_count ⇒ Fixnum
This count indicates the fulfilled capacity so far.
-
#lock_time ⇒ String
Time when Future Reservation would become LOCKED, after which no modifications to Future Reservation will be allowed.
-
#procurement_status ⇒ String
Current state of this Future Reservation Corresponds to the JSON property
procurementStatus.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FutureReservationStatus
constructor
A new instance of FutureReservationStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FutureReservationStatus
Returns a new instance of FutureReservationStatus.
9883 9884 9885 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 9883 def initialize(**args) update!(**args) end |
Instance Attribute Details
#auto_created_reservations ⇒ Array<String>
Fully qualified urls of the automatically created reservations at start_time.
Corresponds to the JSON property autoCreatedReservations
9860 9861 9862 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 9860 def auto_created_reservations @auto_created_reservations end |
#fulfilled_count ⇒ Fixnum
This count indicates the fulfilled capacity so far. This is set during "
PROVISIONING" state. This count also includes capacity delivered as part of
existing matching reservations.
Corresponds to the JSON property fulfilledCount
9867 9868 9869 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 9867 def fulfilled_count @fulfilled_count end |
#lock_time ⇒ String
Time when Future Reservation would become LOCKED, after which no modifications
to Future Reservation will be allowed. Applicable only after the Future
Reservation is in the APPROVED state. The lock_time is an RFC3339 string. The
procurement_status will transition to PROCURING state at this time. TODO(b/
183994731): Replace with Timestamp.
Corresponds to the JSON property lockTime
9876 9877 9878 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 9876 def lock_time @lock_time end |
#procurement_status ⇒ String
Current state of this Future Reservation
Corresponds to the JSON property procurementStatus
9881 9882 9883 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 9881 def procurement_status @procurement_status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9888 9889 9890 9891 9892 9893 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 9888 def update!(**args) @auto_created_reservations = args[:auto_created_reservations] if args.key?(:auto_created_reservations) @fulfilled_count = args[:fulfilled_count] if args.key?(:fulfilled_count) @lock_time = args[:lock_time] if args.key?(:lock_time) @procurement_status = args[:procurement_status] if args.key?(:procurement_status) end |