github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/spark/src/main/resources/catalog.proto (about) 1 syntax = "proto3"; 2 option go_package = "github.com/treevese/lakefs/catalog"; 3 option java_package = "io.treeverse.lakefs"; 4 5 import "google/protobuf/timestamp.proto"; 6 7 package catalog; 8 9 message Entry { 10 string address = 1; 11 google.protobuf.Timestamp last_modified = 2; 12 int64 size = 3; 13 string e_tag = 4; 14 map<string,string> metadata = 5; 15 enum AddressType { 16 // Deprecated. 17 // Unknown address type (should only exist for old commits) 18 // is resolved (to Relative or Full) by the prefix of the address. 19 BY_PREFIX_DEPRECATED = 0; 20 RELATIVE = 1; 21 FULL = 2; 22 } 23 AddressType address_type = 6; 24 }