-
Notifications
You must be signed in to change notification settings - Fork 7
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
Add missing Aliases support in codegen #44
Comments
Metaschema: "aliases": {
"description": "The list of aliases for the resource.",
"type": "array",
"items": {
"title": "Alias Definition",
"type": "object",
"properties": {
"name": {
"description": "The name portion of the alias, if any",
"type": "string"
},
"project": {
"description": "The project portion of the alias, if any",
"type": "string"
},
"type": {
"description": "The type portion of the alias, if any",
"type": "string"
}
}
}
}, Production schema fragments:
|
An interesting consideration for the alias API design: |
true, very interesting bit but can we codegen that |
Codegen should have enough information, yes. |
As discussed on Slack, let's add |
looks like we've already added the e.g.
So when implementing the aliases we can do as suggested here pulumi/pulumi#2754 (comment) |
Relevant upstream integration tests: https://github.com/pulumi/pulumi/tree/master/tests/integration/aliases |
Relevant use case: https://www.pulumi.com/blog/cumundi-guest-post/ |
Note to self: remember to investigate the difference between |
The Aliases implementation needs to be written.
The text was updated successfully, but these errors were encountered: