diff --git a/raystack/frontier/v1beta1/frontier.proto b/raystack/frontier/v1beta1/frontier.proto index 32a72a1c..47682e71 100644 --- a/raystack/frontier/v1beta1/frontier.proto +++ b/raystack/frontier/v1beta1/frontier.proto @@ -1848,9 +1848,19 @@ message GetProjectResponse { Project project = 1; } +message UpdateProjectRequestBody { + string name = 1 [ + (buf.validate.field).string.pattern = "^[A-Za-z0-9-_]+$", + (google.api.field_behavior) = REQUIRED + ]; + string title = 2; + google.protobuf.Struct metadata = 3; + reserved 4; +} + message UpdateProjectRequest { string id = 1; - ProjectRequestBody body = 2; + UpdateProjectRequestBody body = 2; } message UpdateProjectResponse {