You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| format | `yaml` or `json` | Which format to use for the OpenAPI file, defaults to `yaml`. |
115
-
| include-number-enum-values | - | Include number enum values beside the string versions, defaults to only showing strings |
116
115
| ignore-googleapi-http | - | Ignore `google.api.http` options on methods when generating openapi specs |
116
+
| include-number-enum-values | - | Include number enum values beside the string versions, defaults to only showing strings |
117
117
| path | `{filepath}` | Output filepath, defaults to per-protofile output if not given. |
118
+
| path-prefix | - | Prefixes the given string to the beginning of each HTTP path. |
118
119
| proto | - | Generate requests/repsonses with the protobuf content type |
120
+
| services | - | Filter which services have OpenAPI spec generated. The default is all services. Comma-separated, uses the full path of the service "[package name].[service name]" |
119
121
| trim-unused-types | - | Remove types that aren't references from any method request or response. |
120
122
| with-proto-annotations | - | Add protobuf type annotations to the end of descriptions so users know the protobuf type that the field converts to. |
121
123
| with-proto-names | - | Use protobuf field names instead of the camelCase JSON names for property names. |
122
-
| with-streaming | - | Generate OpenAPI for client/server/bidirectional streaming RPCs (can be messy). |
123
-
| services | - | Filter which services have OpenAPI spec generated. The default is all services. Comma-separated, uses the full path of the service "[package name].[service name]" |
124
+
| with-streaming | - | Generate OpenAPI for client/server/bidirectional streaming RPCs (can be messy). |
"description": "A generic empty message that you can re-use to avoid defining duplicated\n empty messages in your APIs. A typical example is to use it as the request\n or the response type of an API method. For instance:\n\n service Foo {\n rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);\n }"
162
+
},
163
+
"path_prefixes.HelloReply": {
164
+
"type": "object",
165
+
"properties": {
166
+
"message": {
167
+
"type": "string",
168
+
"title": "message"
169
+
}
170
+
},
171
+
"title": "HelloReply",
172
+
"additionalProperties": false,
173
+
"description": "The response message containing the greetings"
174
+
},
175
+
"path_prefixes.HelloRequest": {
176
+
"type": "object",
177
+
"properties": {
178
+
"name": {
179
+
"type": "string",
180
+
"title": "name"
181
+
}
182
+
},
183
+
"title": "HelloRequest",
184
+
"additionalProperties": false,
185
+
"description": "The request message containing the user's name."
186
+
},
187
+
"connect-protocol-version": {
188
+
"type": "number",
189
+
"title": "Connect-Protocol-Version",
190
+
"enum": [
191
+
1
192
+
],
193
+
"description": "Define the version of the Connect protocol",
194
+
"const": 1
195
+
},
196
+
"connect-timeout-header": {
197
+
"type": "number",
198
+
"title": "Connect-Timeout-Ms",
199
+
"description": "Define the timeout, in ms"
200
+
},
201
+
"connect.error": {
202
+
"type": "object",
203
+
"properties": {
204
+
"code": {
205
+
"type": "string",
206
+
"examples": [
207
+
"not_found"
208
+
],
209
+
"enum": [
210
+
"canceled",
211
+
"unknown",
212
+
"invalid_argument",
213
+
"deadline_exceeded",
214
+
"not_found",
215
+
"already_exists",
216
+
"permission_denied",
217
+
"resource_exhausted",
218
+
"failed_precondition",
219
+
"aborted",
220
+
"out_of_range",
221
+
"unimplemented",
222
+
"internal",
223
+
"unavailable",
224
+
"data_loss",
225
+
"unauthenticated"
226
+
],
227
+
"description": "The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code]."
228
+
},
229
+
"message": {
230
+
"type": "string",
231
+
"description": "A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the [google.rpc.Status.details][google.rpc.Status.details] field, or localized by the client."
0 commit comments