github.com/googleapis/api-linter@v1.65.2/docs/rules/0233/request-message-name.md (about) 1 --- 2 rule: 3 aip: 233 4 name: [core, '0233', request-message-name] 5 summary: Batch Create methods must have standardized request message names. 6 permalink: /233/request-message-name 7 redirect_from: 8 - /0233/request-message-name 9 --- 10 11 # Batch Create methods: Request message 12 13 This rule enforces that all `BatchCreate` RPCs have a request message name of 14 `BatchCreate*Request`, as mandated in [AIP-233][]. 15 16 ## Details 17 18 This rule looks at any RPCs whose name starts with `BatchCreate`, 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 "BatchCreateBooksRequest" 29 rpc BatchCreateBooks(CreateBookRequest) returns (BatchCreateBooksResponse) { 30 option (google.api.http) = { 31 post: "/v1/{parent=publishers/*}/books:batchCreate" 32 body: "*" 33 }; 34 } 35 ``` 36 37 **Correct** code for this rule: 38 39 ```proto 40 // Correct. 41 rpc BatchCreateBooks(BatchCreateBooksRequest) returns (BatchCreateBooksResponse) { 42 option (google.api.http) = { 43 post: "/v1/{parent=publishers/*}/books:batchCreate" 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::0233::request-message-name=disabled 56 // aip.dev/not-precedent: We need to do this because reasons. --) 57 rpc BatchCreateBooks(CreateBookRequest) returns (BatchCreateBooksResponse) { 58 option (google.api.http) = { 59 post: "/v1/{parent=publishers/*}/books:batchCreate" 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-233]: https://aip.dev/233 69 [aip.dev/not-precedent]: https://aip.dev/not-precedent