Skip to content
Snippets Groups Projects
Commit a97fa353 authored by ko_oler's avatar ko_oler
Browse files

Исправлены названия полей для Collections

parent 38bb5ab5
No related branches found
No related tags found
1 merge request!71Исправлены названия полей для Collections
This commit is part of merge request !71. Comments created here will be created in the context of that merge request.
......@@ -85,7 +85,7 @@ message Collection {
}
message CreateRequest {
Collection collection = 1;
Collection coll = 1;
}
message CreateResponse {
Collection created = 1;
......@@ -98,12 +98,12 @@ message GetOptions {
message GetRequest {
string space_id = 1;
string env_id = 2;
string collection_id = 3;
string id = 3;
GetOptions options = 4;
}
message GetResponse {
Collection collection = 1;
Collection coll = 1;
}
message ListRequest {
......@@ -122,24 +122,24 @@ message ListRequest {
Filter filter = 5;
}
message ListResponse {
repeated Collection collections = 1;
repeated Collection colls = 1;
}
message UpdateRequest {
Collection collection = 1;
Collection coll = 1;
}
message SetSchemaRequest {
string space_id = 1;
string env_id = 2;
string collection_id = 3;
string id = 3;
string schema = 4;
}
message DeleteRequest {
string space_id = 1;
string env_id = 2;
string collection_id = 3;
string id = 3;
}
service Collections {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment