pulumi/tests/testdata/codegen/plain-properties-1.0.0.json

42 lines
820 B
JSON

{
"version": "0.0.1",
"name": "plain-properties",
"types": {
"plain-properties:index:ExampleType": {
"type": "object",
"properties": {
"exampleProperty": {
"type": "string",
"plain": true
},
"nonPlainProperty": {
"type": "string"
}
}
}
},
"resources": {
"plain-properties:index:ExampleResource": {
"type": "object",
"properties": {
"exampleProperty": {
"type": "string",
"plain": true
},
"nonPlainProperty": {
"type": "string"
}
},
"inputProperties": {
"exampleProperty": {
"type": "string",
"plain": true
},
"nonPlainProperty": {
"type": "string"
}
}
}
}
}