mirror of https://github.com/pulumi/pulumi.git
42 lines
952 B
JSON
42 lines
952 B
JSON
{
|
|
"name": "world",
|
|
"version": "0.0.1",
|
|
"resources": {
|
|
"world::WorldMap": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"world::Universe": {
|
|
"type": "object",
|
|
"inputProperties": {
|
|
"worlds": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"$ref": "#/types/world::World"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"types": {
|
|
"world::World": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"language": {
|
|
"go": {
|
|
"importBasePath": "regress-go-10527/world",
|
|
"generateExtraInputTypes": true
|
|
}
|
|
}
|
|
}
|