Show / Hide Table of Contents

Class FutureReservationStatus

[Output only] Represents status related to the future reservation.

Inheritance
System.Object
FutureReservationStatus
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Compute.alpha.Data
Assembly: Google.Apis.Compute.alpha.dll
Syntax
public class FutureReservationStatus : IDirectResponseSchema

Properties

AutoCreatedReservations

Fully qualified urls of the automatically created reservations at start_time.

Declaration
[JsonProperty("autoCreatedReservations")]
public virtual IList<string> AutoCreatedReservations { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

FulfilledCount

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.

Declaration
[JsonProperty("fulfilledCount")]
public virtual long? FulfilledCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

LockTime

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.

Declaration
[JsonProperty("lockTime")]
public virtual string LockTime { get; set; }
Property Value
Type Description
System.String

ProcurementStatus

Current state of this Future Reservation

Declaration
[JsonProperty("procurementStatus")]
public virtual string ProcurementStatus { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top