2020-01-30 11:41:24 +00:00
|
|
|
syntax = "proto3";
|
2020-08-05 23:28:57 +00:00
|
|
|
|
2020-01-30 11:41:24 +00:00
|
|
|
package session;
|
2020-08-05 23:28:57 +00:00
|
|
|
|
2020-03-31 06:58:22 +00:00
|
|
|
option go_package = "github.com/nspcc-dev/neofs-api-go/session";
|
2020-02-05 12:14:39 +00:00
|
|
|
option csharp_namespace = "NeoFS.API.Session";
|
2020-01-30 11:41:24 +00:00
|
|
|
|
|
|
|
import "service/meta.proto";
|
|
|
|
import "service/verify.proto";
|
2020-08-05 16:49:16 +00:00
|
|
|
import "refs/types.proto";
|
2020-01-30 11:41:24 +00:00
|
|
|
|
|
|
|
service Session {
|
2020-08-05 23:28:57 +00:00
|
|
|
// Create opens new session between the client and the server.
|
2020-05-07 15:44:23 +00:00
|
|
|
rpc Create (CreateRequest) returns (CreateResponse);
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
|
|
|
|
2020-08-05 23:28:57 +00:00
|
|
|
// CreateRequest carries an information necessary for opening a session.
|
2020-01-30 11:41:24 +00:00
|
|
|
message CreateRequest {
|
2020-08-05 23:28:57 +00:00
|
|
|
// Carries an identifier of a session initiator.
|
2020-08-06 21:59:50 +00:00
|
|
|
refs.OwnerID owner_id = 1;
|
2020-05-07 15:44:23 +00:00
|
|
|
|
2020-08-05 23:28:57 +00:00
|
|
|
// Carries a lifetime of the session.
|
2020-08-06 21:59:50 +00:00
|
|
|
service.TokenLifetime lifetime = 2;
|
2020-05-07 15:44:23 +00:00
|
|
|
|
2020-08-05 23:28:57 +00:00
|
|
|
// Carries request meta information. Header data is used only to regulate message
|
|
|
|
// transport and does not affect request execution.
|
2020-08-06 21:59:50 +00:00
|
|
|
service.RequestMetaHeader meta_header = 98;
|
2020-08-05 23:28:57 +00:00
|
|
|
|
|
|
|
// Carries request verification information. This header is used to authenticate
|
|
|
|
// the nodes of the message route and check the correctness of transmission.
|
2020-08-06 21:59:50 +00:00
|
|
|
service.RequestVerificationHeader verify_header = 99;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
|
|
|
|
2020-08-05 23:28:57 +00:00
|
|
|
// CreateResponse carries an information about the opened session.
|
2020-01-30 11:41:24 +00:00
|
|
|
message CreateResponse {
|
2020-08-06 21:59:50 +00:00
|
|
|
// id carries an identifier of session token.
|
|
|
|
bytes id = 1;
|
2020-05-07 15:44:23 +00:00
|
|
|
|
2020-08-06 21:59:50 +00:00
|
|
|
// session_key carries a session public key.
|
|
|
|
bytes session_key = 2;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|