Class BigtableColumnFamily
Inheritance
Implements
Inherited Members
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class BigtableColumnFamily : IDirectResponseSchema
Properties
Columns
[Optional] Lists of columns that should be exposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as .. Other columns can be accessed as a list through .Column field.
Declaration
[JsonProperty("columns")]
public virtual IList<BigtableColumn> Columns { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<BigtableColumn> |
Encoding
[Optional] The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. This can be overridden for a specific column by listing that column in 'columns' and specifying an encoding for it.
Declaration
[JsonProperty("encoding")]
public virtual string Encoding { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FamilyId
Identifier of the column family.
Declaration
[JsonProperty("familyId")]
public virtual string FamilyId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
OnlyReadLatest
[Optional] If this is set only the latest version of value are exposed for all columns in this column family. This can be overridden for a specific column by listing that column in 'columns' and specifying a different setting for that column.
Declaration
[JsonProperty("onlyReadLatest")]
public virtual bool? OnlyReadLatest { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
Type
[Optional] The type to convert the value in cells of this column family. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive) - BYTES STRING INTEGER FLOAT BOOLEAN Default type is BYTES. This can be overridden for a specific column by listing that column in 'columns' and specifying a type for it.
Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type | Description |
---|---|
System.String |