pulumi/cmd/lumi
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
..
config.go Reclassify Lumi under the Apache 2.0 license 2017-05-18 14:51:52 -07:00
deploy.go Pretty print outputs during planning 2017-06-01 10:52:25 -07:00
destroy.go Rearrange some deployment logic 2017-06-01 08:36:43 -07:00
env.go Implement mapper.Encode "for real" 2017-06-05 17:49:00 -07:00
env_init.go Reclassify Lumi under the Apache 2.0 license 2017-05-18 14:51:52 -07:00
env_ls.go Create a plan plugin host 2017-06-01 11:41:24 -07:00
env_rm.go Reclassify Lumi under the Apache 2.0 license 2017-05-18 14:51:52 -07:00
env_select.go Reclassify Lumi under the Apache 2.0 license 2017-05-18 14:51:52 -07:00
lumi.go Tidy up project loading for pack commands 2017-06-02 12:43:04 -07:00
main.go Reclassify Lumi under the Apache 2.0 license 2017-05-18 14:51:52 -07:00
pack.go Tidy up project loading for pack commands 2017-06-02 12:43:04 -07:00
pack_eval.go Reclassify Lumi under the Apache 2.0 license 2017-05-18 14:51:52 -07:00
pack_get.go Reclassify Lumi under the Apache 2.0 license 2017-05-18 14:51:52 -07:00
pack_info.go Tidy up project loading for pack commands 2017-06-02 12:43:04 -07:00
pack_verify.go Tidy up project loading for pack commands 2017-06-02 12:43:04 -07:00
plan.go Store both input and output properties distinctly 2017-06-04 19:24:48 -07:00
version.go Reclassify Lumi under the Apache 2.0 license 2017-05-18 14:51:52 -07:00