fix: added missing proto data for workspace component service

This commit is contained in:
Andrey Melnikov
2021-01-29 09:55:12 -08:00
parent 3ae767d8f9
commit e1e382e223

View File

@@ -81,6 +81,11 @@ service WorkspaceService {
}
}
message WorkspaceComponent {
string name = 1;
string url = 2;
}
message Workspace {
string uid = 1;
string name = 2;
@@ -92,6 +97,7 @@ message Workspace {
repeated KeyValue labels = 8;
string url = 9;
repeated Parameter templateParameters = 10;
repeated WorkspaceComponent workspaceComponents = 11;
}
message WorkspaceStatus {