Show / Hide Table of Contents

Class BiReservation

Represents a BI Reservation.

Inheritance
System.Object
BiReservation
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.BigQueryReservation.v1beta1.Data
Assembly: Google.Apis.BigQueryReservation.v1beta1.dll
Syntax
public class BiReservation : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Name

The resource name of the singleton BI reservation. Reservation names have the form projects/{project_id}/locations/{location_id}/biReservation.

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

PreferredTables

Preferred tables to use BI capacity for.

Declaration
[JsonProperty("preferredTables")]
public virtual IList<TableReference> PreferredTables { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<TableReference>

Size

Size of a reservation, in bytes.

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

UpdateTime

Output only. The last update timestamp of a reservation.

Declaration
[JsonProperty("updateTime")]
public virtual object UpdateTime { get; set; }
Property Value
Type Description
System.Object

Implements

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