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
Describe the bug
The API version validation in this package appears to have a bug. We have a new query parameter added on a new API version. The generated code that creates this request specifies this new query parameter as a keyword arg set to None by default. We do not set this query parameter at all in our code (CLI), but validation throws the parameter is not supported on the API version. It seems this validation is considering new query parameter set to None as a validation error when it should not.
Expected behavior
Tests don't error with unmanage_action_resources_without_delete_support not supported on 2024-03-01 API version (the preexisting API version) when this is set to None.
Screenshots
Test errors:
It is set to None:
Additional context
I don't think this is blocking me because I intend to upgrade to the latest API version.
Describe the bug
The API version validation in this package appears to have a bug. We have a new query parameter added on a new API version. The generated code that creates this request specifies this new query parameter as a keyword arg set to
Noneby default. We do not set this query parameter at all in our code (CLI), but validation throws the parameter is not supported on the API version. It seems this validation is considering new query parameter set toNoneas a validation error when it should not.To Reproduce
Steps to reproduce the behavior:
bc8df278a1f7e93bc5987565693900e3ac61119fazdev setup -cto install updated packagesazdev test DeploymentStacksTestExpected behavior
Tests don't error with
unmanage_action_resources_without_delete_supportnot supported on2024-03-01API version (the preexisting API version) when this is set toNone.Screenshots

Test errors:
It is set to

None:Additional context
I don't think this is blocking me because I intend to upgrade to the latest API version.