mirror of https://github.com/pulumi/pulumi.git
42 lines
820 B
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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|