mirror of https://github.com/pulumi/pulumi.git
33 lines
648 B
JSON
33 lines
648 B
JSON
{
|
|
"functions": {
|
|
"madeup-package:codegentest:funcWithDictParam": {
|
|
"description": "Check codegen of functions with a Dict<str,str> parameter.",
|
|
"inputs": {
|
|
"type": "object",
|
|
"properties": {
|
|
"a": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"b": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"outputs": {
|
|
"properties": {
|
|
"r": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"type": "object",
|
|
"required": [
|
|
"r"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|