Class ModelTableDefinition

java.lang.Object
com.google.cloud.bigquery.TableDefinition
com.google.cloud.bigquery.ModelTableDefinition
All Implemented Interfaces:
Serializable

@BetaApi public abstract class ModelTableDefinition extends TableDefinition
A Google BigQuery Model table definition. This definition is used to represent a BigQuery ML model.
See Also:
  • Constructor Details

    • ModelTableDefinition

      public ModelTableDefinition()
  • Method Details

    • getNumBytes

      @Nullable public abstract Long getNumBytes()
      Returns the size of this table in bytes, excluding any data in the streaming buffer.
    • getLocation

      @Nullable public abstract String getLocation()
      Returns the geographic location where the table should reside. This value is inherited from the dataset.
      See Also:
    • newBuilder

      public static ModelTableDefinition.Builder newBuilder()
      Returns a builder for a BigQuery ML model table definition.
    • toBuilder

      public abstract ModelTableDefinition.Builder toBuilder()
      Returns a builder for the <ModelTableDefinition object.
      Specified by:
      toBuilder in class TableDefinition