pulumi/pkg/codegen/internal/test/testdata/nested-module-thirdparty/schema.json
Anton Tayanovskyy 49298fb433
Codegen testing upgrades (#7989)
* Multi-pass, in-place checks for SDK codegen tests; toward working Python checks

* Remove temp debug output

* Upgrade Node

* Update dotnet; need to follow up on version.txt quirks

* WIP

* Sounds like we can use non-github package names to ensure things are local

* Fix simple-enum-schema

* Fix dash-named-schema

* Fix nested-module

* Start building a test-running pass

* Infer skipping tests from skipping compiles

* Move tree schma tests to a proper place

* Address lint issues on Go code

* Build against local Go SDK

* Update pkg/codegen/internal/test/sdk_driver.go

Co-authored-by: Ian Wahbe <ian@wahbe.com>

* Make go tests work by copying them into the tree from go-extras

* Fix lint

* Fix bad merge

* Manifest-based file discovery

* Remove version-related TODO from dotnet codegen

* Add doc comment

* Do not overwrite go.mod if found from mixins

* Accept python codegen change

* Accept node codegen

* Ignore lint issue

* Accept docs changes

Co-authored-by: Ian Wahbe <ian@wahbe.com>
2021-09-22 13:55:20 -04:00

37 lines
668 B
JSON

{
"version": "0.0.1",
"name": "foo-bar",
"resources": {
"foo-bar:deeply/nested/module:Resource": {
"properties": {
"baz": {
"type": "string",
"secret": true
}
},
"inputProperties": {
"baz": {
"type": "string",
"secret": true
}
},
"type": "object"
}
},
"language": {
"python": {
"packageName": "foo_bar",
"requires": {
"pulumi": ">=3.0.0,<4.0.0"
}
},
"csharp": {
"packageReferences": {
"Pulumi": "3.12"
}
},
"go": {
"importBasePath": "nested-module-thirdparty/foo"
}
}
}