-
Notifications
You must be signed in to change notification settings - Fork 810
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
Updates to Counter and List Alpha.proto Methods #3544
Updates to Counter and List Alpha.proto Methods #3544
Conversation
61e094e
to
c4314bc
Compare
Build Failed 😱 Build Id: 4d786ddf-6843-4461-bca5-42e070eb9983 To get permission to view the Cloud Build view, join the agones-discuss Google Group. |
Build Succeeded 👏 Build Id: e6a4c801-3df0-4f7e-8e37-a3024edc8e17 The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
Build Succeeded 👏 Build Id: eb5624b9-da71-4609-b798-80af47feb2dc The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
What type of PR is this?
/kind cleanup
What this PR does / Why we need it:
While working on REST API conformance tests we discovered that the autogenerated swagger.json and REST API client did not generate working methods for GetCounter, UpdateList, etc. for Counters and Lists methods. This is due to the GetCounter, UpdateList, etc. methods using the https://google.aip.dev/231 suggested URI patterns like
get: "/v1alpha1/{name=counters/*}"
. By updating to patternget: "/v1alpha1/counters/{name}"
we are able to generate working REST API code.Which issue(s) this PR fixes:
Working on #2716
Special notes for your reviewer: