Custom methods: Response message
This rule enforces that custom methods have a response message that is named to
match the RPC name with a Response
suffix, or that is the resource being operated
on, as described in AIP-136.
Details
This rule looks at any method that is not a standard method, and complains if
the name of the corresponding output message does not match the name of the RPC
with the suffix Response
appended, or the resource being operated on.
Note: To identify the resource being operated on, the rule checks for
the request field name
, and comparing its (google.api.resource_reference).type
,
if present, to the response message’s (google.api.resource).type
, if present.
Examples
Response Suffix
Incorrect code for this rule:
// Incorrect.
// Should be `TranslateTextResponse`.
rpc TranslateText(TranslateTextRequest) returns (Text) {
option (google.api.http) = {
post: "/v1/{project=projects/*}:translateText"
body: "*"
};
}
Correct code for this rule:
// Correct.
rpc TranslateText(TranslateTextRequest) returns (TranslateTextResponse) {
option (google.api.http) = {
post: "/v1/{project=projects/*}:translateText"
body: "*"
};
}
Resource
Incorrect code for this rule:
// Incorrect.
// Should be `Book`.
rpc ArchiveBook(ArchiveBookRequest) returns (Author) {
option (google.api.http) = {
post: "/v1/{name=publishers/*/books/*}:archive"
body: "*"
};
}
message ArchiveBookRequest {
// The book to archive.
// Format: publishers/{publisher}/books/{book}
string name = 1 [(google.api.resource_reference).type = "library.googleapis.com/Book"];
}
Correct code for this rule:
rpc ArchiveBook(ArchiveBookRequest) returns (Book) {
option (google.api.http) = {
post: "/v1/{name=publishers/*/books/*}:archive"
body: "*"
};
}
message ArchiveBookRequest {
// The book to archive.
// Format: publishers/{publisher}/books/{book}
string name = 1 [(google.api.resource_reference).type = "library.googleapis.com/Book"];
}
Long Running Operation
Incorrect code for this rule:
// Incorrect.
// Should be `Book` from Operation.
rpc ArchiveBook(ArchiveBookRequest) returns (google.longrunning.Operation) {
option (google.api.http) = {
post: "/v1/{name=publishers/*/books/*}:archive"
body: "*"
};
option (google.longrunning.operation_info) = {
response_type: "Author"
}
}
message ArchiveBookRequest {
// The book to archive.
// Format: publishers/{publisher}/books/{book}
string name = 1 [(google.api.resource_reference).type = "library.googleapis.com/Book"];
}
Correct code for this rule:
rpc ArchiveBook(ArchiveBookRequest) returns (google.longrunning.Operation) {
option (google.api.http) = {
post: "/v1/{name=publishers/*/books/*}:archive"
body: "*"
};
option (google.longrunning.operation_info) = {
response_type: "Book"
}
}
message ArchiveBookRequest {
// The book to archive.
// Format: publishers/{publisher}/books/{book}
string name = 1 [(google.api.resource_reference).type = "library.googleapis.com/Book"];
}
Disabling
If you need to violate this rule, use a leading comment above the method. Remember to also include an aip.dev/not-precedent comment explaining why.
// (-- api-linter: core::0136::response-message-name=disabled
// aip.dev/not-precedent: We need to do this because reasons. --)
rpc ArchiveBook(ArchiveBookRequest) returns (ArchiveBookResp) {
option (google.api.http) = {
post: "/v1/{name=publishers/*/books/*}:archive"
body: "*"
};
}
If you need to violate this rule for an entire file, place the comment at the top of the file.