-
Notifications
You must be signed in to change notification settings - Fork 46
Remove the generate step #120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
{ | ||
"name": "xyz", | ||
"description": "A Pulumi package for creating and managing xyz cloud resources.", | ||
"keywords": [ | ||
"abc", | ||
"xyz", | ||
"category/cloud" | ||
], | ||
"homepage": "https://www.pulumi.com", | ||
"license": "Apache-2.0", | ||
"attribution": "This Pulumi package is based on the [`xyz` Terraform Provider](https://github.com/terraform-providers/terraform-provider-xyz).", | ||
"repository": "https://github.com/pulumi/pulumi-xyz", | ||
"publisher": "abc", | ||
"meta": { | ||
"moduleFormat": "(.*)(?:/[^/]*)" | ||
}, | ||
"language": { | ||
"csharp": { | ||
"packageReferences": { | ||
"Pulumi": "3.*" | ||
}, | ||
"compatibility": "tfbridge20" | ||
}, | ||
"go": { | ||
"importBasePath": "github.com/pulumi/pulumi-xyz/sdk/go/xyz", | ||
"generateResourceContainerTypes": true, | ||
"generateExtraInputTypes": true | ||
}, | ||
"nodejs": { | ||
"packageDescription": "A Pulumi package for creating and managing xyz cloud resources.", | ||
"readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/terraform-providers/terraform-provider-xyz)\n\u003e distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi-xyz` repo](https://github.com/pulumi/pulumi-xyz/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-provider-xyz` repo](https://github.com/terraform-providers/terraform-provider-xyz/issues).", | ||
"dependencies": { | ||
"@pulumi/pulumi": "^3.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/mime": "^2.0.0", | ||
"@types/node": "^10.0.0" | ||
}, | ||
"compatibility": "tfbridge20", | ||
"disableUnionOutputTypes": true | ||
}, | ||
"python": { | ||
"requires": { | ||
"pulumi": "\u003e=3.0.0,\u003c4.0.0" | ||
}, | ||
"readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/terraform-providers/terraform-provider-xyz)\n\u003e distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi-xyz` repo](https://github.com/pulumi/pulumi-xyz/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-provider-xyz` repo](https://github.com/terraform-providers/terraform-provider-xyz/issues).", | ||
"compatibility": "tfbridge20", | ||
"pyproject": {} | ||
} | ||
}, | ||
"config": {}, | ||
"provider": { | ||
"description": "The provider type for the xyz package. By default, resources use package-wide configuration\nsettings, however an explicit `Provider` instance may be created and passed during resource\nconstruction to achieve fine-grained programmatic control over provider settings. See the\n[documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information.\n" | ||
}, | ||
"resources": { | ||
"xyz:index/resource:Resource": { | ||
"properties": { | ||
"sampleAttribute": { | ||
"type": "string", | ||
"description": "Sample attribute.\n" | ||
} | ||
}, | ||
"inputProperties": { | ||
"sampleAttribute": { | ||
"type": "string", | ||
"description": "Sample attribute.\n" | ||
} | ||
}, | ||
"stateInputs": { | ||
"description": "Input properties used for looking up and filtering Resource resources.\n", | ||
"properties": { | ||
"sampleAttribute": { | ||
"type": "string", | ||
"description": "Sample attribute.\n" | ||
} | ||
}, | ||
"type": "object" | ||
} | ||
} | ||
}, | ||
"functions": { | ||
"xyz:index/getDataSource:getDataSource": { | ||
"inputs": { | ||
"description": "A collection of arguments for invoking getDataSource.\n", | ||
"properties": { | ||
"sampleAttribute": { | ||
"type": "string" | ||
} | ||
}, | ||
"type": "object", | ||
"required": [ | ||
"sampleAttribute" | ||
] | ||
}, | ||
"outputs": { | ||
"description": "A collection of values returned by getDataSource.\n", | ||
"properties": { | ||
"id": { | ||
"type": "string", | ||
"description": "The provider-assigned unique ID for this managed resource.\n" | ||
}, | ||
"sampleAttribute": { | ||
"type": "string" | ||
} | ||
}, | ||
"type": "object", | ||
"required": [ | ||
"sampleAttribute", | ||
"id" | ||
] | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
intended?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep. It's used during plugin discovery and auto-generated.