Show / Hide Table of Contents

Class BigtableOptions

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

Properties

ColumnFamilies

[Optional] List of column families to expose in the table schema along with their types. This list restricts the column families that can be referenced in queries and specifies their value types. You can use this list to do type conversions - see the 'type' field for more details. If you leave this list empty, all column families are present in the table schema and their values are read as BYTES. During a query only the column families referenced in that query are read from Bigtable.

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

ETag

The ETag of the item.

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

IgnoreUnspecifiedColumnFamilies

[Optional] If field is true, then the column families that are not specified in columnFamilies list are not exposed in the table schema. Otherwise, they are read with BYTES type values. The default value is false.

Declaration
[JsonProperty("ignoreUnspecifiedColumnFamilies")]
public virtual bool? IgnoreUnspecifiedColumnFamilies { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ReadRowkeyAsString

[Optional] If field is true, then the rowkey column families will be read and converted to string. Otherwise they are read with BYTES type values and users need to manually cast them with CAST if necessary. The default value is false.

Declaration
[JsonProperty("readRowkeyAsString")]
public virtual bool? ReadRowkeyAsString { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

IDirectResponseSchema
In This Article
Back to top