sparse-intern-71089
03/23/2021, 5:20 PMlimited-rainbow-51650
03/23/2021, 5:38 PMmetadata
member of the BackendConfig
class generated like this?
public readonly metadata!: pulumi.Output<ObjectMeta | undefined>;
Looking at e.g. the Kubernetes Service
class, the metadata
member is this:
public readonly metadata!: pulumi.Output<outputs.meta.v1.ObjectMeta>;
If I drop the undefined
from the generated type definition, my code works correctly. Should I file a Github issue for this?gorgeous-egg-16927
03/23/2021, 11:37 PM.metadata
field, so | undefined
doesn’t make sense.limited-rainbow-51650
03/24/2021, 7:13 AM