Class ModelTableDefinition (2.6.2)

public abstract class ModelTableDefinition extends TableDefinition

A Google BigQuery Model table definition. This definition is used to represent a BigQuery ML model.

Inheritance

java.lang.Object > TableDefinition > ModelTableDefinition

Constructors

ModelTableDefinition()

public ModelTableDefinition()

Methods

getLocation()

public abstract String getLocation()

Returns the geographic location where the table should reside. This value is inherited from the dataset.

Returns
TypeDescription
String

getNumBytes()

public abstract Long getNumBytes()

Returns the size of this table in bytes, excluding any data in the streaming buffer.

Returns
TypeDescription
Long

newBuilder()

public static ModelTableDefinition.Builder newBuilder()

Returns a builder for a BigQuery ML model table definition.

Returns
TypeDescription
ModelTableDefinition.Builder

toBuilder()

public abstract ModelTableDefinition.Builder toBuilder()

Returns a builder for the <ModelTableDefinition object.

Returns
TypeDescription
ModelTableDefinition.Builder
Overrides