Alex Vanin
eafcbff11f
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
18 lines
492 B
Protocol Buffer
18 lines
492 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package neo.fs.v2.subnet;
|
|
|
|
option go_package = "git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/subnet/grpc;subnet";
|
|
option csharp_namespace = "Neo.FileStorage.API.Subnet";
|
|
|
|
import "refs/types.proto";
|
|
|
|
// NeoFS subnetwork description
|
|
message SubnetInfo {
|
|
// Unique subnet identifier. Missing ID is
|
|
// equivalent to zero (default subnetwork) ID.
|
|
neo.fs.v2.refs.SubnetID id = 1;
|
|
|
|
// Identifier of the subnetwork owner
|
|
neo.fs.v2.refs.OwnerID owner = 2;
|
|
}
|