github.com/googleapis/api-linter@v1.65.2/docs/rules/0234/request-message-name.md (about) 1 --- 2 rule: 3 aip: 234 4 name: [core, '0234', request-message-name] 5 summary: Batch Update methods must have standardized request message names. 6 permalink: /234/request-message-name 7 redirect_from: 8 - /0234/request-message-name 9 --- 10 11 # Batch Update methods: Request message 12 13 This rule enforces that all `BatchUpdate` RPCs have a request message name of 14 `BatchUpdate*Request`, as mandated in [AIP-234][]. 15 16 ## Details 17 18 This rule looks at any RPCs whose name starts with `BatchUpdate`, and 19 complains if the name of the corresponding input message does not match the 20 name of the RPC with the suffix `Request` appended. 21 22 ## Examples 23 24 **Incorrect** code for this rule: 25 26 ```proto 27 // Incorrect. 28 // Method input should be "BatchUpdateBooksRequest" 29 rpc BatchUpdateBooks(UpdateBookRequest) returns (BatchUpdateBooksResponse) { 30 option (google.api.http) = { 31 post: "/v1/{parent=publishers/*}/books:batchUpdate" 32 body: "*" 33 }; 34 } 35 ``` 36 37 **Correct** code for this rule: 38 39 ```proto 40 // Correct. 41 rpc BatchUpdateBooks(BatchUpdateBooksRequest) returns (BatchUpdateBooksResponse) { 42 option (google.api.http) = { 43 post: "/v1/{parent=publishers/*}/books:batchUpdate" 44 body: "*" 45 }; 46 } 47 ``` 48 49 ## Disabling 50 51 If you need to violate this rule, use a leading comment above the method. 52 Remember to also include an [aip.dev/not-precedent][] comment explaining why. 53 54 ```proto 55 // (-- api-linter: core::0234::request-message-name=disabled 56 // aip.dev/not-precedent: We need to do this because reasons. --) 57 rpc BatchUpdateBooks(UpdateBookRequest) returns (BatchUpdateBooksResponse) { 58 option (google.api.http) = { 59 post: "/v1/{parent=publishers/*}/books:batchUpdate" 60 body: "*" 61 }; 62 } 63 ``` 64 65 If you need to violate this rule for an entire file, place the comment at the 66 top of the file. 67 68 [aip-234]: https://aip.dev/234 69 [aip.dev/not-precedent]: https://aip.dev/not-precedent