We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What I want to do is:
rpc DirtyPayload (puppet.DirtyPayloadRequest) returns (puppet.DirtyPayloadResponse) { option (google.api.http) = { additional_bindings { put: "/message/{id}/dirty" default_value: type=PAYLOAD_TYPE_MESSAGE } additional_bindings { put: "/contacts/{id}/dirty default_value: type=PAYLOAD_TYPE_CONTACT } }
The default_value: type=PAYLOAD_TYPE_MESSAGE is what I want to do, but it seems there's not an easy way to do that.
default_value: type=PAYLOAD_TYPE_MESSAGE
I'm trying to use
put: "/message/{id}/dirty{type=PAYLOAD_TYPE_MESSAGE}" put: "/contacts/{id}/dirty/{type=PAYLOAD_TYPE_CONTACT}"
now, but it seems to have other problems...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What I want to do is:
The
default_value: type=PAYLOAD_TYPE_MESSAGE
is what I want to do, but it seems there's not an easy way to do that.I'm trying to use
now, but it seems to have other problems...
Related Issues
The text was updated successfully, but these errors were encountered: