-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Remove unused async fields #17098
Remove unused async fields #17098
Comments
#18954 was partially cause by / obfuscated by the large number of unused fields present. |
I'm pretty sure |
I wrote (in collaboration with AI) a small python script that helps with this. Pull request here: GoogleCloudPlatform/magic-modules#12514
|
aync operation.(kind) and status can also be removed. PR out now. |
I have a PR that removes these values from the serializer I'm going to wait until January to merge. This PR will close the issue. |
We currently have a number of fields in our async block that don't have any impact on the generator. For example:
These particular fields were previously required, but were made optional to resolve #14976. There may also be other unused fields.
We should remove all fields that are not used by the generator, since it causes extra work and confusion for contributors.
The text was updated successfully, but these errors were encountered: