forked from TrueCloudLab/frostfs-sdk-go
[#215] object: Add well-known FilePath attribute
Signed-off-by: Denis Kirillov <denis@nspcc.ru>
This commit is contained in:
parent
ee92df3203
commit
74234623b2
1 changed files with 9 additions and 0 deletions
|
@ -9,6 +9,15 @@ const (
|
|||
// file name to be associated with the object on saving.
|
||||
AttributeFileName = "FileName"
|
||||
|
||||
// AttributeFilePath is an attribute key that is commonly used to denote
|
||||
// full path to be associated with the object on saving. Should start with a
|
||||
// '/' and use '/' as a delimiting symbol. Trailing '/' should be
|
||||
// interpreted as a virtual directory marker. If an object has conflicting
|
||||
// FilePath and FileName, FilePath should have higher priority, because it
|
||||
// is used to construct the directory tree. FilePath with trailing '/' and
|
||||
// non-empty FileName attribute should not be used together.
|
||||
AttributeFilePath = "FilePath"
|
||||
|
||||
// AttributeTimestamp is an attribute key that is commonly used to denote
|
||||
// user-defined local time of object creation in Unix Timestamp format.
|
||||
AttributeTimestamp = "Timestamp"
|
||||
|
|
Loading…
Reference in a new issue