Merged
Conversation
This PR has the following changes to source plugin(s) tables:
|
disq
reviewed
Jan 3, 2023
erezrokah
approved these changes
Jan 4, 2023
Member
erezrokah
left a comment
There was a problem hiding this comment.
Looks good, added a couple of non blocking comments.
I didn't go through everything, so I'm hoping non of the table resolver implementations changed. Might be good to keep those in separate files
plugins/source/azure/resources/services/authorization/role_definitions.go
Show resolved
Hide resolved
| Columns: []schema.Column{ | ||
| { | ||
| Name: "subscription_id", |
Member
There was a problem hiding this comment.
Same here, is adding this subscription_id column expected?
This shouldn't introduce any public facing changes.
b9d6fd2 to
67f557f
Compare
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
yevgenypats
added a commit
that referenced
this pull request
Jan 9, 2023
Similar to #6276 moving transformation to be part of our SDK cloudquery/plugin-sdk#564 This is related to cloudquery/plugin-sdk#573 Few notes on column changes: most of changes are just additional columns and this should be fine as we did too much transformation. we want to keep the code simple, focus on extraction and provide and easy way of doing "dumb" one level transformation via reflection. The additional column are because we have in some places a duplicate where we add our own `arn` so it can be consistent but this is our decision and we still want to be as close as possible to the API so some duplicates is fine (and it makes the code simple and consistent). breaking changes in `aws_docdb_pending_maintenance_actions ` those apparently never worked and those columns where always empty (they didn't have mock tests so we didn't catch those) Co-authored-by: Kemal <223029+disq@users.noreply.github.com> Co-authored-by: Kemal Hadimli <disq@users.noreply.github.com>
kodiakhq bot
pushed a commit
that referenced
this pull request
Jan 10, 2023
🤖 I have created a release *beep* *boop* --- ## [3.2.0](plugins-source-azure-v3.1.0...plugins-source-azure-v3.2.0) (2023-01-10) ### Features * Move azure to avoid codegen. ([#6276](#6276)) ([a0a8f0a](a0a8f0a)) ### Bug Fixes * **deps:** Update module github.com/cloudquery/plugin-sdk to v1.17.2 ([#6260](#6260)) ([805972a](805972a)) * **deps:** Update module github.com/cloudquery/plugin-sdk to v1.19.0 ([#6363](#6363)) ([ae6967c](ae6967c)) * **deps:** Update module github.com/cloudquery/plugin-sdk to v1.20.0 ([#6376](#6376)) ([d6187ec](d6187ec)) * **deps:** Update module github.com/cloudquery/plugin-sdk to v1.21.0 ([#6382](#6382)) ([5baea40](5baea40)) * **deps:** Update module github.com/cloudquery/plugin-sdk to v1.22.0 ([#6516](#6516)) ([b7e4e73](b7e4e73)) * **deps:** Update module github.com/cloudquery/plugin-sdk to v1.23.0 ([#6522](#6522)) ([ce24f1d](ce24f1d)) * **deps:** Update module github.com/cloudquery/plugin-sdk to v1.24.1 ([#6553](#6553)) ([392b848](392b848)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This shouldn't introduce any public facing changes.
This should go together with: cloudquery/plugin-sdk#564
In general codegen creates a sub-optimal developer experience where you have to juggle between
codegenand code to make any code-changes. Not only it creates a tough experience for the developer it also makes it hard to review and to contribute.This take here moves codegen only to the discovery phase and moves the transformation to be part of the SDK which will eventually deprecate the
codegenpackage from the SDK completely and will avoid having two APIs which are almost identical but quite the same.