Vaishali Gupta

Results 9 comments of Vaishali Gupta

Any workaround for this that I can do without changing from proto2 to proto3?

rpc EntityUpdate(EntityUpdateArg) returns (EntityUpdateRet) { option (google.api.http) = { put: "/v1/tentity/{uuid}" body: "*" }; } Given the above and given uuid in bytes, how am i supposed to achieve that?

Agreed but in EntityUpdateArg, uuid is in bytes. How the type conversion is done here? Apologies I am not much aware of that. Will it be something like - put:...

Few things to clarify here - If its a path param, I create a string entry in EntityUpdateArg say uuid_str and use that in path param? If thats the case,...

My existing clients are rpc clients only. On top of existing proto, I wanted to expose REST interface for new clients. But given I have to use field from existing...

Does that mean that conversion from bytes_type is supported in body and not for path params as far as proto2 is concerned? If thats the case, is there any plan...

I am also facing the same issue. The directory structure followed is same as path of proto file and not picked from go_package option. I am not sure if there...

I am also facing similar issues. Any solution or workaround for this?