2020-10-22 15:41:08 +00:00
|
|
|
package object
|
|
|
|
|
2020-10-22 16:10:42 +00:00
|
|
|
// SysAttributePrefix is a prefix of key to system attribute.
|
|
|
|
const SysAttributePrefix = "__NEOFS__"
|
2020-10-22 15:41:08 +00:00
|
|
|
|
|
|
|
const (
|
2020-10-22 16:10:42 +00:00
|
|
|
// SysAttributeUploadID marks smaller parts of a split bigger object.
|
|
|
|
SysAttributeUploadID = SysAttributePrefix + "UPLOAD_ID"
|
2020-10-22 15:41:08 +00:00
|
|
|
|
2020-10-22 16:10:42 +00:00
|
|
|
// SysAttributeExpEpoch tells GC to delete object after that epoch.
|
|
|
|
SysAttributeExpEpoch = SysAttributePrefix + "EXPIRATION_EPOCH"
|
2020-10-22 15:41:08 +00:00
|
|
|
)
|