pulumi/tests/testdata/codegen/throw-not-implemented-pp/python/throw-not-implemented.py

8 lines
161 B
Python

import pulumi
def not_implemented(msg):
raise NotImplementedError(msg)
pulumi.export("result", not_implemented("expression here is not implemented yet"))