mirror of https://github.com/pulumi/pulumi.git
34 lines
639 B
JSON
34 lines
639 B
JSON
{
|
|
"functions": {
|
|
"madeup-package:codegentest:funcWithDefaultValue": {
|
|
"description": "Check codegen of functions with default values.",
|
|
"inputs": {
|
|
"type": "object",
|
|
"required": [
|
|
"a"
|
|
],
|
|
"properties": {
|
|
"a": {
|
|
"type": "string"
|
|
},
|
|
"b": {
|
|
"type": "string",
|
|
"default": "b-default"
|
|
}
|
|
}
|
|
},
|
|
"outputs": {
|
|
"properties": {
|
|
"r": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"type": "object",
|
|
"required": [
|
|
"r"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|