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
And if so, whether that implies that the parent field should be omitted from the request and the URI pattern.
parent
If that's the case, we should also update the linter, as it appears to have false positives around things like
rpc BatchGetWidgets(BatchGetWidgetsRequest) returns (BatchGetWidgetsResponse) { option (google.api.http) = { get: "/v2/widgets:batchGet" }; }
as the GET URI doesn't match the regex {[a-zA-Z=/*]+}/[A-Za-z0-9-=/*]+:batchGet$ at https://github.com/googleapis/api-linter/blob/c6ca8351663b4679ba5a8c571dfede4ff4d22228/rules/aip0231/aip0231.go#L45.
GET
{[a-zA-Z=/*]+}/[A-Za-z0-9-=/*]+:batchGet$
Other linters that need to be updated if so are:
The text was updated successfully, but these errors were encountered:
Loosen recommendation around parent field for top-level resources i…
9fbafd2
…n Batch AIPs (#602) Fixes #599.
Successfully merging a pull request may close this issue.
And if so, whether that implies that the
parent
field should be omitted from the request and the URI pattern.If that's the case, we should also update the linter, as it appears to have false positives around things like
as the
GET
URI doesn't match the regex{[a-zA-Z=/*]+}/[A-Za-z0-9-=/*]+:batchGet$
at https://github.com/googleapis/api-linter/blob/c6ca8351663b4679ba5a8c571dfede4ff4d22228/rules/aip0231/aip0231.go#L45.Other linters that need to be updated if so are:
The text was updated successfully, but these errors were encountered: