mirror of https://github.com/pulumi/pulumi.git
66 lines
1.3 KiB
JSON
66 lines
1.3 KiB
JSON
{
|
|
"version": "0.0.1",
|
|
"name": "plain-properties",
|
|
"types": {
|
|
"plain-properties:index:ExampleType": {
|
|
"type": "object",
|
|
"properties": {
|
|
"exampleProperty": {
|
|
"type": "string",
|
|
"plain": true
|
|
},
|
|
"nonPlainProperty": {
|
|
"type": "string"
|
|
},
|
|
"nestedProperty": {
|
|
"type": "array",
|
|
"plain": true,
|
|
"items": {
|
|
"type": "string",
|
|
"plain": true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"resources": {
|
|
"plain-properties:index:ExampleResource": {
|
|
"type": "object",
|
|
"properties": {
|
|
"exampleProperty": {
|
|
"type": "string",
|
|
"plain": true
|
|
},
|
|
"nonPlainProperty": {
|
|
"type": "string"
|
|
},
|
|
"nestedProperty": {
|
|
"type": "array",
|
|
"plain": true,
|
|
"items": {
|
|
"type": "string",
|
|
"plain": true
|
|
}
|
|
}
|
|
},
|
|
"inputProperties": {
|
|
"exampleProperty": {
|
|
"type": "string",
|
|
"plain": true
|
|
},
|
|
"nonPlainProperty": {
|
|
"type": "string"
|
|
},
|
|
"nestedProperty": {
|
|
"type": "array",
|
|
"plain": true,
|
|
"items": {
|
|
"type": "string",
|
|
"plain": true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|