Alex Shcherbakov
Alex Shcherbakov
1.17.2?
@toufreach5 we're in the process of migrating this provider to the new SDK. Kindly wait for the new version for several days.
Closing as it's already completely implemented (https://github.com/cloudquery/cloudquery/blob/main/plugins/source/aws/resources/services/fsx/file_systems.go#L39-L43)
Go SDK: https://github.com/equinix-labs/metal-go
Hi @iainlbc! Could you test with v2.8.0?
> Hi @iainlbc! Could you test with v2.8.0? Actually, it's v2.8.2
Decided approach: deterministic `_cq_id`: 1. Implement deterministic PK hash: - hash all PK fields after sorting them by name - if the field is map, it's hash should also be...
Updated to sort keys first
> I think [this library](https://github.com/mitchellh/hashstructure) will dit everything we need in terms of the ensuring the hash is deterministic even for maps and slices We need to address the fact...
`table.PrimaryKeys()` returns only column names. so, the code would look something like ```go names := table.PrimaryKeys() if len(names) == 0 { names = table.Columns.Names() // TODO: filter out internal columns,...