2022-02-16 07:13:43 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package neo.fs.v2.lock;
|
|
|
|
|
2023-03-07 08:50:02 +00:00
|
|
|
option go_package = "git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/lock/grpc;lock";
|
2022-02-16 07:13:43 +00:00
|
|
|
option csharp_namespace = "Neo.FileStorage.API.Lock";
|
|
|
|
|
|
|
|
import "refs/types.proto";
|
|
|
|
|
2022-04-13 06:21:33 +00:00
|
|
|
// Lock objects protects a list of objects from being deleted. The lifetime of a
|
2022-02-21 09:47:21 +00:00
|
|
|
// lock object is limited similar to regular objects in
|
2023-03-14 07:24:35 +00:00
|
|
|
// `__SYSTEM__EXPIRATION_EPOCH` (`__NEOFS__EXPIRATION_EPOCH` is deprecated) attribute. Lock object MUST have expiration epoch.
|
2022-05-27 11:54:48 +00:00
|
|
|
// It is impossible to delete a lock object via ObjectService.Delete RPC call.
|
2022-02-16 07:13:43 +00:00
|
|
|
message Lock {
|
2022-02-21 09:47:21 +00:00
|
|
|
// List of objects to lock. Must not be empty or carry empty IDs.
|
|
|
|
// All members must be of the `REGULAR` type.
|
2022-02-16 07:13:43 +00:00
|
|
|
repeated neo.fs.v2.refs.ObjectID members = 1 [json_name = "members"];
|
|
|
|
}
|