File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ reached a steady-state. for values that are related to the resource [state][].
106106
107107Examples include:
108108
109- - Following a successful create that is is latest mutation on a resource, a get
109+ - Following a successful create that is the latest mutation on a resource, a get
110110 request for a resource ** must** return the resource.
111111- Following a successful update that is the latest mutation on a resource, a get
112112 request for a resource ** must** return the final values from the update
Original file line number Diff line number Diff line change @@ -140,8 +140,8 @@ service to validate it was set correctly.
140140
141141- ** 2023-10-31:** Update to approved.
142142
143- [ Declarative clients ] : ./0009#declarative-clients
144- [ aip-202 ] : ./202 .md
143+ [ Declarative clients ] : ./0009.md #declarative-clients
144+ [ aip-202 ] : ./0202 .md
145145
146146<!-- prettier-ignore-start -->
147147[ aip-180 ] : ./0180.md
Original file line number Diff line number Diff line change @@ -113,6 +113,7 @@ operation (AIP-151) instead:
113113rpc CreateBook(CreateBookRequest) returns (google.longrunning.Operation) {
114114 option (google.api.http) = {
115115 post: "/v1/{parent=publishers/*}/books"
116+ body: "book"
116117 };
117118 option (google.longrunning.operation_info) = {
118119 response_type: "Book"
@@ -211,7 +212,7 @@ name and use it in references from other resources.
211212[ data plane ] : ./0111.md#data-plane
212213[ management plane ] : ./0111.md#management-plane
213214[ errors ] : ./0193.md
214- [ field_behavior ] : ./203 .md
215+ [ field_behavior ] : ./0203 .md
215216[ Declarative clients ] : ./0009.md#declarative-clients
216217[ permission-denied ] : ./0193.md#permission-denied
217218[ strong consistency ] : ./0121.md#strong-consistency
Original file line number Diff line number Diff line change @@ -161,6 +161,7 @@ operation (AIP-151) instead:
161161rpc UpdateBook(UpdateBookRequest) returns (google.longrunning.Operation) {
162162 option (google.api.http) = {
163163 patch: "/v1/{book.name=publishers/*/books/*}"
164+ body: "book"
164165 };
165166 option (google.longrunning.operation_info) = {
166167 response_type: "Book"
You can’t perform that action at this time.
0 commit comments