Package feast.proto.core
Interface DataSourceProto.DataSource.BigQueryOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataSourceProto.DataSource.BigQueryOptions,DataSourceProto.DataSource.BigQueryOptions.Builder
- Enclosing class:
- DataSourceProto.DataSource
public static interface DataSourceProto.DataSource.BigQueryOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetQuery()SQL query that returns a table containing feature data.com.google.protobuf.ByteStringgetQueryBytes()SQL query that returns a table containing feature data.StringgetTableRef()Full table reference in the form of [project:dataset.table]com.google.protobuf.ByteStringgetTableRefBytes()Full table reference in the form of [project:dataset.table]-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTableRef
String getTableRef()
Full table reference in the form of [project:dataset.table]
string table_ref = 1;- Returns:
- The tableRef.
-
getTableRefBytes
com.google.protobuf.ByteString getTableRefBytes()
Full table reference in the form of [project:dataset.table]
string table_ref = 1;- Returns:
- The bytes for tableRef.
-
getQuery
String getQuery()
SQL query that returns a table containing feature data. Must contain an event_timestamp column, and respective entity columns
string query = 2;- Returns:
- The query.
-
getQueryBytes
com.google.protobuf.ByteString getQueryBytes()
SQL query that returns a table containing feature data. Must contain an event_timestamp column, and respective entity columns
string query = 2;- Returns:
- The bytes for query.
-
-