Package feast.proto.core
Interface DataSourceProto.DataSource.SnowflakeOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataSourceProto.DataSource.SnowflakeOptions,DataSourceProto.DataSource.SnowflakeOptions.Builder
- Enclosing class:
- DataSourceProto.DataSource
public static interface DataSourceProto.DataSource.SnowflakeOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDatabase()Snowflake schema namecom.google.protobuf.ByteStringgetDatabaseBytes()Snowflake schema nameStringgetQuery()SQL query that returns a table containing feature data.com.google.protobuf.ByteStringgetQueryBytes()SQL query that returns a table containing feature data.StringgetSchema()Snowflake schema namecom.google.protobuf.ByteStringgetSchemaBytes()Snowflake schema nameStringgetTable()Snowflake table namecom.google.protobuf.ByteStringgetTableBytes()Snowflake table name-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTable
String getTable()
Snowflake table name
string table = 1;- Returns:
- The table.
-
getTableBytes
com.google.protobuf.ByteString getTableBytes()
Snowflake table name
string table = 1;- Returns:
- The bytes for table.
-
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.
-
getSchema
String getSchema()
Snowflake schema name
string schema = 3;- Returns:
- The schema.
-
getSchemaBytes
com.google.protobuf.ByteString getSchemaBytes()
Snowflake schema name
string schema = 3;- Returns:
- The bytes for schema.
-
getDatabase
String getDatabase()
Snowflake schema name
string database = 4;- Returns:
- The database.
-
getDatabaseBytes
com.google.protobuf.ByteString getDatabaseBytes()
Snowflake schema name
string database = 4;- Returns:
- The bytes for database.
-
-