-
Notifications
You must be signed in to change notification settings - Fork 1.1k
fix(generator): use json_name when available #12940
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 7 commits
81dd15f
78c5a45
4ec4743
821cec4
0967e2c
2c7cd12
aa4005b
b1ed1a8
ed9d0a9
a9fcffc
1c31d3d
9557026
76bc472
da69029
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here we can observe the affected query, path and body parameters using the |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -94,6 +94,8 @@ public class HttpJsonComplianceStub extends ComplianceStub { | |
| Map<String, List<String>> fields = new HashMap<>(); | ||
| ProtoRestSerializer<RepeatRequest> serializer = | ||
| ProtoRestSerializer.create(); | ||
| serializer.putQueryParam( | ||
| fields, "custom-kebab-name", request.getCustomKebabName()); | ||
| serializer.putQueryParam(fields, "name", request.getName()); | ||
| serializer.putQueryParam( | ||
| fields, "serverVerify", request.getServerVerify()); | ||
|
|
@@ -132,6 +134,8 @@ public class HttpJsonComplianceStub extends ComplianceStub { | |
| Map<String, List<String>> fields = new HashMap<>(); | ||
| ProtoRestSerializer<RepeatRequest> serializer = | ||
| ProtoRestSerializer.create(); | ||
| serializer.putQueryParam( | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. let's test with biglake directly and confirm that the response conforms to
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| fields, "custom-kebab-name", request.getCustomKebabName()); | ||
| serializer.putQueryParam(fields, "info", request.getInfo()); | ||
| serializer.putQueryParam(fields, "name", request.getName()); | ||
| serializer.putQueryParam( | ||
|
|
@@ -181,6 +185,8 @@ public class HttpJsonComplianceStub extends ComplianceStub { | |
| Map<String, List<String>> fields = new HashMap<>(); | ||
| ProtoRestSerializer<RepeatRequest> serializer = | ||
| ProtoRestSerializer.create(); | ||
| serializer.putQueryParam( | ||
| fields, "custom-kebab-name", request.getCustomKebabName()); | ||
| serializer.putQueryParam(fields, "info", request.getInfo()); | ||
| serializer.putQueryParam(fields, "name", request.getName()); | ||
| serializer.putQueryParam( | ||
|
|
@@ -228,6 +234,8 @@ public class HttpJsonComplianceStub extends ComplianceStub { | |
| Map<String, List<String>> fields = new HashMap<>(); | ||
| ProtoRestSerializer<RepeatRequest> serializer = | ||
| ProtoRestSerializer.create(); | ||
| serializer.putQueryParam( | ||
| fields, "custom-kebab-name", request.getCustomKebabName()); | ||
| serializer.putQueryParam(fields, "info", request.getInfo()); | ||
| serializer.putQueryParam(fields, "name", request.getName()); | ||
| serializer.putQueryParam( | ||
|
|
@@ -272,6 +280,8 @@ public class HttpJsonComplianceStub extends ComplianceStub { | |
| Map<String, List<String>> fields = new HashMap<>(); | ||
| ProtoRestSerializer<RepeatRequest> serializer = | ||
| ProtoRestSerializer.create(); | ||
| serializer.putQueryParam( | ||
| fields, "custom-kebab-name", request.getCustomKebabName()); | ||
| serializer.putQueryParam(fields, "info", request.getInfo()); | ||
| serializer.putQueryParam(fields, "name", request.getName()); | ||
| serializer.putQueryParam( | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.