pulumi/tests/testdata/codegen/simple-enum-schema/schema.json

273 lines
6.2 KiB
JSON
Raw Normal View History

2020-10-08 01:13:10 +00:00
{
"version": "0.0.1",
"name": "plant",
2020-10-08 01:13:10 +00:00
"resources": {
"plant:tree/v1:Nursery": {
"inputProperties": {
"varieties": {
"type": "array",
"items": {
"$ref": "#/types/plant:tree/v1:RubberTreeVariety"
},
"description": "The varieties available"
2021-02-26 06:05:02 +00:00
},
"sizes": {
"type": "object",
"additionalProperties": {
"$ref": "#/types/plant:tree/v1:TreeSize"
},
"description": "The sizes of trees available"
}
},
"requiredInputs": ["varieties"]
},
"plant:tree/v1:RubberTree": {
2020-10-08 01:13:10 +00:00
"inputProperties": {
"container": {
"$ref": "#/types/plant::Container"
2020-10-08 01:13:10 +00:00
},
"type": {
2021-01-22 17:53:21 +00:00
"$ref": "#/types/plant:tree/v1:RubberTreeVariety",
"default": "Burgundy"
2020-10-22 17:53:29 +00:00
},
"farm": {
"oneOf": [
{ "$ref": "#/types/plant:tree/v1:Farm" },
{ "type": "string" }
],
"default": "(unknown)"
2021-01-22 17:53:21 +00:00
},
"size": {
"$ref": "#/types/plant:tree/v1:TreeSize",
"default": "medium"
},
"diameter": {
"$ref": "#/types/plant:tree/v1:Diameter",
"default": 6
2020-10-08 01:13:10 +00:00
}
2020-10-22 17:53:29 +00:00
},
"stateInputs": {
"properties": {
"farm": {
"oneOf": [
{ "$ref": "#/types/plant:tree/v1:Farm" },
{ "type": "string" }
],
"default": "(unknown)"
}
}
},
2020-10-22 17:53:29 +00:00
"properties": {
"container": {
"$ref": "#/types/plant::Container"
2020-10-22 17:53:29 +00:00
},
"type": {
"$ref": "#/types/plant:tree/v1:RubberTreeVariety"
2020-10-22 17:53:29 +00:00
},
"farm": {
"oneOf": [
{ "$ref": "#/types/plant:tree/v1:Farm" },
{ "type": "string" }
2020-10-22 17:53:29 +00:00
]
2021-01-22 17:53:21 +00:00
},
"size": {
"$ref": "#/types/plant:tree/v1:TreeSize",
"default": "medium"
},
"diameter": {
"$ref": "#/types/plant:tree/v1:Diameter",
"default": 6
2020-10-22 17:53:29 +00:00
}
},
2021-01-22 17:53:21 +00:00
"required": ["type", "diameter"],
"requiredInputs": ["type", "diameter"]
2020-10-08 01:13:10 +00:00
}
},
"types": {
"plant::CloudAuditOptionsLogName": {
"description": "The log_name to populate in the Cloud Audit Record. This is added to regress pulumi/pulumi issue #7913",
"type": "string",
"enum": [
{
"name": "UnspecifiedLogName",
"description": "Default. Should not be used.",
"value": "UNSPECIFIED_LOG_NAME"
},
{
"name": "AdminActivity",
"description": "Corresponds to \"cloudaudit.googleapis.com/activity\"",
"value": "ADMIN_ACTIVITY"
},
{
"name": "DataAccess",
"description": "Corresponds to \"cloudaudit.googleapis.com/data_access\"",
"value": "DATA_ACCESS"
},
{
"name": "Synthetic",
"description": "What if triple quotes \"\"\" are used in the description",
"value": "SYNTHETIC"
},
{
"value": "_NO_NAME"
}
]
},
"plant::Container": {
2020-10-08 01:13:10 +00:00
"type": "object",
"properties": {
"size": {
"$ref": "#/types/plant::ContainerSize"
2020-10-08 01:13:10 +00:00
},
"material": {
"type": "string"
},
"color": {
"oneOf": [
{ "$ref": "#/types/plant::ContainerColor" },
{ "type": "string" }
2020-10-08 01:13:10 +00:00
]
2020-11-06 17:01:03 +00:00
},
"brightness": {
"$ref": "#/types/plant::ContainerBrightness",
"default": 1.0
2020-10-08 01:13:10 +00:00
}
},
"required": ["size"]
},
"plant::ContainerSize": {
2020-10-08 01:13:10 +00:00
"type": "integer",
"description": "plant container sizes",
"enum": [
{
"value": 4,
"name": "FourInch"
},
{
"value": 6,
"name": "SixInch"
},
{
"value": 8,
"name": "EightInch",
"deprecationMessage": "Eight inch pots are no longer supported."
}
]
},
"plant::ContainerColor": {
2020-10-08 01:13:10 +00:00
"type": "string",
"description": "plant container colors",
"enum": [
{
"value": "red"
},
{
"value": "blue"
},
{
"value": "yellow"
}
]
},
"plant::ContainerBrightness": {
2020-11-06 17:01:03 +00:00
"type": "number",
"enum": [
{
"name": "ZeroPointOne",
"value": 0.1
},
{
"name": "One",
"value": 1.0
}
]
},
"plant:tree/v1:RubberTreeVariety": {
2020-10-08 01:13:10 +00:00
"type": "string",
"description": "types of rubber trees",
"enum": [
{
"value": "Burgundy",
"description": "A burgundy rubber tree."
},
{
"value": "Ruby",
"description": "A ruby rubber tree."
},
{
"value": "Tineke",
"description": "A tineke rubber tree."
}
]
2020-10-22 17:53:29 +00:00
},
"plant:tree/v1:Farm": {
2020-10-22 17:53:29 +00:00
"type": "string",
"enum": [
{
"value": "Pulumi Planters Inc."
},
{
"value": "Plants'R'Us"
}
]
2021-01-22 17:53:21 +00:00
},
"plant:tree/v1:TreeSize": {
"type": "string",
"enum": [
{
"value": "small"
},
{
"value": "medium"
},
{
"value": "large"
}
]
},
"plant:tree/v1:Diameter": {
"type": "number",
"enum": [
{
"name": "sixinch",
"value": 6
},
{
"name": "twelveinch",
"value": 12
}
]
2020-10-08 01:13:10 +00:00
}
},
"language": {
2020-11-06 17:01:03 +00:00
"csharp": {
"namespaces": {
"plant": "Plant",
2020-11-06 17:01:03 +00:00
"tree/v1": "Tree.V1"
},
"respectSchemaVersion": true
2020-11-06 17:01:03 +00:00
},
2020-11-03 07:02:56 +00:00
"go": {
"importBasePath": "simple-enum-schema/plant",
"generateExtraInputTypes": true,
[go/sdk-gen] Generating SDK with generics (#13828) # Description This PR implements generating the generic variant of a go SDK from Pulumi schemas. Currently the idea is to generate a directory `x` inside the root directory of the go SDK which will contain the same SDK except using generics and generating far less code than its current counter part. Also implements an enum option `$.language.go.generics` which can be set to the following: - `none` is the default which maintains the current behavior that generates legacy types without generics - `side-by-side` generates the generics sdk variant alongside the current sdk under directory `x` - `generics-only` generates only the new sdk with generics at the root of the package Still a bunch of things to do: - [x] Generating `InvokeResult]Output` type from `Output[InvokeResult]` and generating accessor methods for it - [x] Generating default values for types and using the `pulumix` subpackage to do so - [x] Generating generic SDK variants for all test schemas we have and making sure they compile (currently only testing `simple-resource-schema` as shown below) - [x] Account for plain inputs for components - [x] Combine pulumix.Join with pulumix.Apply to generate resource accessor methods - [x] Problem with `GPtrOutput[T]` and `ArrayOutput[T]` being unwrapped to `Output[*T]` and `Output[[]T]` - [x] Remove excess untyped container types from generated enums - [x] Fix default values for resource methods with lifted single return value - [x] Secret properties Currently the following test schemas have opted for `generics: "side-by-side"`: - [x] output-funcs - [x] simple-enum-schema - [x] secrets - [x] simple-plain-schema - [x] plain-and-default ## Checklist - [ ] I have run `make tidy` to update any new dependencies - [x] I have run `make lint` to verify my code passes the lint check - [ ] I have formatted my code using `gofumpt` <!--- Please provide details if the checkbox below is to be left unchecked. --> - [x] I have added tests that prove my fix is effective or that my feature works <!--- User-facing changes require a CHANGELOG entry. --> - [x] I have run `make changelog` and committed the `changelog/pending/<file>` documenting my change <!-- If the change(s) in this PR is a modification of an existing call to the Pulumi Cloud, then the service should honor older versions of the CLI where this change would not exist. You must then bump the API version in /pkg/backend/httpstate/client/api.go, as well as add it to the service. --> - [ ] Yes, there are changes in this PR that warrants bumping the Pulumi Cloud API version <!-- @Pulumi employees: If yes, you must submit corresponding changes in the service repo. -->
2023-09-19 10:28:50 +00:00
"respectSchemaVersion": true,
"generics": "side-by-side"
2020-11-03 07:02:56 +00:00
},
"nodejs": {
"dependencies": {
"@pulumi/pulumi": "^3.12"
},
"devDependencies": {
"typescript": "^3.7.0"
},
"respectSchemaVersion": true
},
2020-11-25 05:43:32 +00:00
"python": {
"moduleNameOverrides": {
"tree/v1": "tree/v1"
},
"respectSchemaVersion": true
2020-11-25 05:43:32 +00:00
}
2020-10-08 01:13:10 +00:00
}
}