Package feast.proto.core
Interface DataSourceProto.DataSource.FileOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataSourceProto.DataSource.FileOptions,DataSourceProto.DataSource.FileOptions.Builder
- Enclosing class:
- DataSourceProto.DataSource
public static interface DataSourceProto.DataSource.FileOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataFormatProto.FileFormatgetFileFormat().feast.core.FileFormat file_format = 1;DataFormatProto.FileFormatOrBuildergetFileFormatOrBuilder().feast.core.FileFormat file_format = 1;StringgetFileUrl()Target URL of file to retrieve and source features from.com.google.protobuf.ByteStringgetFileUrlBytes()Target URL of file to retrieve and source features from.booleanhasFileFormat().feast.core.FileFormat file_format = 1;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasFileFormat
boolean hasFileFormat()
.feast.core.FileFormat file_format = 1;- Returns:
- Whether the fileFormat field is set.
-
getFileFormat
DataFormatProto.FileFormat getFileFormat()
.feast.core.FileFormat file_format = 1;- Returns:
- The fileFormat.
-
getFileFormatOrBuilder
DataFormatProto.FileFormatOrBuilder getFileFormatOrBuilder()
.feast.core.FileFormat file_format = 1;
-
getFileUrl
String getFileUrl()
Target URL of file to retrieve and source features from. s3://path/to/file for AWS S3 storage gs://path/to/file for GCP GCS storage file:///path/to/file for local storage
string file_url = 2;- Returns:
- The fileUrl.
-
getFileUrlBytes
com.google.protobuf.ByteString getFileUrlBytes()
Target URL of file to retrieve and source features from. s3://path/to/file for AWS S3 storage gs://path/to/file for GCP GCS storage file:///path/to/file for local storage
string file_url = 2;- Returns:
- The bytes for fileUrl.
-
-