I was wondering if there any shortcuts to take a j...
# automation-api
b
I was wondering if there any shortcuts to take a json struct and convert it to arguments for a resource without having to write it all out. i.e.
{name: "blah"}
-> `FooArgs{ Name: pulumi.String("blah")}`without having to basically translate each field in the code
m
Are you writing Go or Python?
b
Go