We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c49425 commit 859ba76Copy full SHA for 859ba76
1 file changed
raystack/frontier/v1beta1/frontier.proto
@@ -1849,9 +1849,19 @@ message GetProjectResponse {
1849
Project project = 1;
1850
}
1851
1852
+message UpdateProjectRequestBody {
1853
+ string name = 1 [
1854
+ (buf.validate.field).string.pattern = "^[A-Za-z0-9-_]+$",
1855
+ (google.api.field_behavior) = REQUIRED
1856
+ ];
1857
+ string title = 2;
1858
+ google.protobuf.Struct metadata = 3;
1859
+ reserved 4;
1860
+}
1861
+
1862
message UpdateProjectRequest {
1863
string id = 1;
- ProjectRequestBody body = 2;
1864
+ UpdateProjectRequestBody body = 2;
1865
1866
1867
message UpdateProjectResponse {
0 commit comments