@@ -57,16 +57,16 @@ option php_namespace = "Cs3\\Ocm\\Incoming\\V1Beta1";
5757service OcmIncomingAPI {
5858 // Creates a new OCM share in response to a call from remote to `/ocm/shares`. See:
5959 // https://cs3org.github.io/OCM-API/docs.html?branch=v1.2.0&repo=OCM-API&user=cs3org#/paths/~1shares/post
60- rpc CreateIncomingOCMShare ( CreateIncomingOCMShareRequest ) returns (CreateIncomingOCMShareResponse );
60+ rpc CreateOCMIncomingShare ( CreateOCMIncomingShareRequest ) returns (CreateOCMIncomingShareResponse );
6161 // Updates an OCM share in response to a notification from remote to `/ocm/notifications`. See:
6262 // https://cs3org.github.io/OCM-API/docs.html?branch=v1.2.0&repo=OCM-API&user=cs3org#/paths/~1notifications/post
63- rpc UpdateIncomingOCMShare ( UpdateIncomingOCMShareRequest ) returns (UpdateIncomingOCMShareResponse );
63+ rpc UpdateOCMIncomingShare ( UpdateOCMIncomingShareRequest ) returns (UpdateOCMIncomingShareResponse );
6464 // Deletes an OCM share in response to a notification from remote to `/ocm/notifications`. See:
6565 // https://cs3org.github.io/OCM-API/docs.html?branch=v1.2.0&repo=OCM-API&user=cs3org#/paths/~1notifications/post
66- rpc DeleteIncomingOCMShare ( DeleteIncomingOCMShareRequest ) returns (DeleteIncomingOCMShareResponse );
66+ rpc DeleteOCMIncomingShare ( DeleteOCMIncomingShareRequest ) returns (DeleteOCMIncomingShareResponse );
6767}
6868
69- message CreateIncomingOCMShareRequest {
69+ message CreateOCMIncomingShareRequest {
7070 // OPTIONAL.
7171 // Opaque information.
7272 cs3.types.v1beta1.Opaque opaque = 1 ;
@@ -111,7 +111,7 @@ message CreateIncomingOCMShareRequest {
111111 string code = 12 ;
112112}
113113
114- message CreateIncomingOCMShareResponse {
114+ message CreateOCMIncomingShareResponse {
115115 // REQUIRED.
116116 // The response status.
117117 cs3.rpc.v1beta1.Status status = 1 ;
@@ -125,7 +125,7 @@ message CreateIncomingOCMShareResponse {
125125 cs3.types.v1beta1.Timestamp created = 4 ;
126126}
127127
128- message UpdateIncomingOCMShareRequest {
128+ message UpdateOCMIncomingShareRequest {
129129 // OPTIONAL.
130130 // Opaque information.
131131 cs3.types.v1beta1.Opaque opaque = 1 ;
@@ -147,7 +147,7 @@ message UpdateIncomingOCMShareRequest {
147147 repeated cs3.sharing.ocm.v1beta1.Protocol protocols = 7 ;
148148}
149149
150- message UpdateIncomingOCMShareResponse {
150+ message UpdateOCMIncomingShareResponse {
151151 // REQUIRED.
152152 // The response status.
153153 cs3.rpc.v1beta1.Status status = 1 ;
@@ -156,7 +156,7 @@ message UpdateIncomingOCMShareResponse {
156156 cs3.types.v1beta1.Opaque opaque = 2 ;
157157}
158158
159- message DeleteIncomingOCMShareRequest {
159+ message DeleteOCMIncomingShareRequest {
160160 // REQUIRED.
161161 // Unique ID to identify the share at the consumer side.
162162 string id = 1 ;
@@ -165,7 +165,7 @@ message DeleteIncomingOCMShareRequest {
165165 cs3.types.v1beta1.Opaque opaque = 2 ;
166166}
167167
168- message DeleteIncomingOCMShareResponse {
168+ message DeleteOCMIncomingShareResponse {
169169 // REQUIRED.
170170 // The response status.
171171 cs3.rpc.v1beta1.Status status = 1 ;
0 commit comments