You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// When serializing an InputOutput, we will either
// serialize it as its resolved value or the "unknown value" sentinel.
// We will do the former for all outputs created directly by user code (such outputs always
// resolve isKnown to true) and for any resource outputs that were resolved with known values.
Note: This is actually a little more involved than just emitting an output value when see an instance of Output. In the Java SDK we can end up in situations where there are nested Outputs, and output values aren't intended to be nested.
Affected area/feature
The text was updated successfully, but these errors were encountered:
Hello!
Issue details
We need to add output value marshaling to the Java serializer, along the lines of pulumi/pulumi#8157
pulumi-java/sdk/java/pulumi/src/main/java/com/pulumi/serialization/internal/Serializer.java
Lines 178 to 181 in dfd3b3b
Note: This is actually a little more involved than just emitting an output value when see an instance of
Output
. In the Java SDK we can end up in situations where there are nested Outputs, and output values aren't intended to be nested.Affected area/feature
The text was updated successfully, but these errors were encountered: