pulumi/pkg/util
joeduffy db99092334 Implement mapper.Encode "for real"
This change implements `mapper.Encode` "for real" (that is, in a way
that isn't a complete embarrassment).  It uses the obvious reflection
trickery to encode a tagged struct and its values as a JSON-like
in-memory map and collection of keyed values.

During this, I took the opportunity to also clean up a few other things
that had been bugging me.  Namely, the presence of `mapper.Object` was
always error prone, since it isn't a true "typedef" in the sence that
it carries extra RTTI.  Instead of doing that, let's just use the real
`map[string]interface{}` "JSON-map-like" object type.  Even better, we
no longer require resource providers to deal with the mapper
infrastructure.  Instead, the `Check` function can simply return an
array of errors.  It's still best practice to return field-specific errors
to facilitate better diagnostics, but it's no longer required; and I've
added `resource.NewFieldError` to eliminate the need to import mapper.

As of this change, we can also consistently emit RPC structs with `lumi`
tags, rather than `lumi` tags on the way in and `json` on the way out.

This completes pulumi/lumi#183.
2017-06-05 17:49:00 -07:00
..
cmdutil Tidy up project loading for pack commands 2017-06-02 12:43:04 -07:00
contract Reclassify Lumi under the Apache 2.0 license 2017-05-18 14:51:52 -07:00
convutil Modify provider creates; use get for outs 2017-06-01 08:36:43 -07:00
mapper Implement mapper.Encode "for real" 2017-06-05 17:49:00 -07:00
retry Reclassify Lumi under the Apache 2.0 license 2017-05-18 14:51:52 -07:00
rpcutil Reclassify Lumi under the Apache 2.0 license 2017-05-18 14:51:52 -07:00
testutil Reclassify Lumi under the Apache 2.0 license 2017-05-18 14:51:52 -07:00