HTTP Pattern Variables
This rule enforces that any HTTP annotations that reference a resource must match one of the pattern strings defined by that resource, as mandated in AIP-127.
Details
This rule ensures that google.api.http
path template variables that represent
a resource name match one of the resource name patterns of the resource that the
field being referenced represents.
Examples
Incorrect code for this rule:
// Incorrect.
// The template for the `name` variable in the `google.api.http` annotation
// is missing segments from the Book message's `pattern`.
rpc GetBook(GetBookRequest) returns (Book) {
option (google.api.http) = {
get: "v1/{name=shelves/*}"
};
}
message GetBookRequest {
string name = 1 [
(google.api.resource_reference).type = "library.googleapis.com/Book"
];
}
message Book {
option (google.api.resource) = {
type: "library.googleapis.com/Book"
pattern: "shelves/{shelf}/books/{book}"
};
// Book resource name.
string name = 1;
}
Correct code for this rule:
// Correct.
rpc GetBook(GetBookRequest) returns (Book) {
option (google.api.http) = {
get: "v1/{name=shelves/*/books/*}"
};
}
message GetBookRequest {
string name = 1 [
(google.api.resource_reference).type = "library.googleapis.com/Book"
];
}
message Book {
option (google.api.resource) = {
type: "library.googleapis.com/Book"
pattern: "shelves/{shelf}/books/{book}"
};
// Book resource name.
string name = 1;
}
Disabling
If you need to violate this rule, use a leading comment above the field. Remember to also include an aip.dev/not-precedent comment explaining why.
// (-- api-linter: core::0127::http-template-pattern=disabled
// aip.dev/not-precedent: We need to do this because reasons. --)
rpc GetBook(GetBookRequest) returns (Book) {
option (google.api.http) = {
get: "v1/{name=shelves/*}"
};
}
If you need to violate this rule for an entire file, place the comment at the top of the file.