We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
max_*_routes
Each of the max_*_routes elements in the FabricSettings{} struct has 2 possible states:
FabricSettings{}
null
omitempty
There's no way for a caller to indicate whether they intend to clear the current value.
One possible option:
*uint32
*int64
-1
MarshalJson
This approach is complicated by the need to support Apstra 4.2.1, 4.2.0 and 4.1.x, which each handle this data a bit differently.
The text was updated successfully, but these errors were encountered:
apstra_datacenter_blueprint
SetGenericSystemLoopbackIPs()
No branches or pull requests
Each of the
max_*_routes
elements in theFabricSettings{}
struct has 2 possible states:null
to to clear the current value (theomitempty
struct tag is not configured)There's no way for a caller to indicate whether they intend to clear the current value.
One possible option:
*uint32
to*int64
-1
(affirm clearing the value)MarshalJson
method which determines whether the values will be sent based on the-1
This approach is complicated by the need to support Apstra 4.2.1, 4.2.0 and 4.1.x, which each handle this data a bit differently.
The text was updated successfully, but these errors were encountered: