Package com.google.cloud.bigquery
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:
- BigQuery ML Model, Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ModelTableDefinition.Builder
-
Nested classes/interfaces inherited from class com.google.cloud.bigquery.TableDefinition
TableDefinition.Type
-
-
Constructor Summary
Constructors Constructor Description ModelTableDefinition()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract String
getLocation()
Returns the geographic location where the table should reside.abstract Long
getNumBytes()
Returns the size of this table in bytes, excluding any data in the streaming buffer.static ModelTableDefinition.Builder
newBuilder()
Returns a builder for a BigQuery ML model table definition.abstract ModelTableDefinition.Builder
toBuilder()
Returns a builder for the<ModelTableDefinition
object.-
Methods inherited from class com.google.cloud.bigquery.TableDefinition
getSchema, getType
-
-
-
-
Method Detail
-
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:
- Dataset Location
-
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 classTableDefinition
-
-