This PR builds on top of #483 to fix the problem with AdminVdc.ResourcePoolRefs read capabilities (this is a read-only field).
There is a Go marshaling problem https://github.com/golang/go/issues/9519 which makes marshaling/unmarshaling non symmetric, but as this field is read-only - we care about reading it.
So the goal is to:
Be able to read resources pools backing VDCs
Avoid breaking code on create/update operations
Test go test -tags "org vdc" -check.vv -timeout=255m . passed
This PR builds on top of #483 to fix the problem with
AdminVdc.ResourcePoolRefs
read capabilities (this is a read-only field).There is a Go marshaling problem https://github.com/golang/go/issues/9519 which makes marshaling/unmarshaling non symmetric, but as this field is read-only - we care about reading it. So the goal is to:
create/update
operationsTest
go test -tags "org vdc" -check.vv -timeout=255m .
passedCloses #483