mirror of https://github.com/pulumi/pulumi.git
34 lines
692 B
JSON
34 lines
692 B
JSON
{
|
|
"name": "py_tests",
|
|
"version": "0.0.1",
|
|
"functions": {
|
|
"madeup-package:codegentest:funcWithAllOptionalInputs": {
|
|
"description": "Check codegen of functions with all optional inputs.",
|
|
"inputs": {
|
|
"type": "object",
|
|
"properties": {
|
|
"a": {
|
|
"type": "string",
|
|
"description": "Property A"
|
|
},
|
|
"b": {
|
|
"type": "string",
|
|
"description": "Property B"
|
|
}
|
|
}
|
|
},
|
|
"outputs": {
|
|
"properties": {
|
|
"r": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"type": "object",
|
|
"required": [
|
|
"r"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|