Show / Hide Table of Contents

Class JobStatistics2.ReservationUsageData

[Output-only] Job resource usage breakdown by reservation.

Inheritance
System.Object
JobStatistics2.ReservationUsageData
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.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class ReservationUsageData

Properties

Name

[Output-only] Reservation name or "unreserved" for on-demand resources usage.

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

SlotMs

[Output-only] Slot-milliseconds the job spent in the given reservation.

Declaration
[JsonProperty("slotMs")]
public virtual long? SlotMs { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
In This Article
Back to top