diff --git a/steampipe-plugin-github/github/table_github_community_profile.go b/steampipe-plugin-github/github/table_github_community_profile.go index 3e3069a0..0822dae2 100644 --- a/steampipe-plugin-github/github/table_github_community_profile.go +++ b/steampipe-plugin-github/github/table_github_community_profile.go @@ -13,9 +13,7 @@ func tableGitHubCommunityProfile() *plugin.Table { Name: "github_community_profile", Description: "Community profile information for the given repository.", List: &plugin.ListConfig{ - KeyColumns: plugin.SingleColumn("repository_full_name"), - Hydrate: opengovernance.ListCommunityProfile, - ShouldIgnoreError: isNotFoundError([]string{"404"}), + Hydrate: opengovernance.ListCommunityProfile, }, Columns: commonColumns([]*plugin.Column{ { diff --git a/steampipe-plugin-github/github/table_github_container_package.go b/steampipe-plugin-github/github/table_github_container_package.go index b44fdfec..62d52054 100644 --- a/steampipe-plugin-github/github/table_github_container_package.go +++ b/steampipe-plugin-github/github/table_github_container_package.go @@ -13,7 +13,8 @@ func tableGitHubContainerPackage() *plugin.Table { Hydrate: opengovernance.ListPackage, }, Get: &plugin.GetConfig{ - Hydrate: opengovernance.GetPackage, + KeyColumns: plugin.AllColumns([]string{"id"}), + Hydrate: opengovernance.GetPackage, }, Columns: []*plugin.Column{ // Basic details columns diff --git a/steampipe-plugin-github/github/table_github_maven_package.go b/steampipe-plugin-github/github/table_github_maven_package.go index ec70e954..ecd1dd52 100644 --- a/steampipe-plugin-github/github/table_github_maven_package.go +++ b/steampipe-plugin-github/github/table_github_maven_package.go @@ -13,7 +13,8 @@ func tableGitHubMavenPackage() *plugin.Table { Hydrate: opengovernance.ListPackage, }, Get: &plugin.GetConfig{ - Hydrate: opengovernance.GetPackage, + KeyColumns: plugin.AllColumns([]string{"id"}), + Hydrate: opengovernance.GetPackage, }, Columns: []*plugin.Column{ // Basic details columns diff --git a/steampipe-plugin-github/github/table_github_npm_package.go b/steampipe-plugin-github/github/table_github_npm_package.go index 880cde35..8f20e678 100644 --- a/steampipe-plugin-github/github/table_github_npm_package.go +++ b/steampipe-plugin-github/github/table_github_npm_package.go @@ -13,7 +13,8 @@ func tableGitHubNPMPackage() *plugin.Table { Hydrate: opengovernance.ListPackage, }, Get: &plugin.GetConfig{ - Hydrate: opengovernance.GetPackage, + KeyColumns: plugin.AllColumns([]string{"id"}), + Hydrate: opengovernance.GetPackage, }, Columns: []*plugin.Column{ // Basic details columns diff --git a/steampipe-plugin-github/github/table_github_nuget_package.go b/steampipe-plugin-github/github/table_github_nuget_package.go index 0e678500..c6779198 100644 --- a/steampipe-plugin-github/github/table_github_nuget_package.go +++ b/steampipe-plugin-github/github/table_github_nuget_package.go @@ -13,7 +13,8 @@ func tableGitHubNugetPackage() *plugin.Table { Hydrate: opengovernance.ListPackage, }, Get: &plugin.GetConfig{ - Hydrate: opengovernance.GetPackage, + KeyColumns: plugin.AllColumns([]string{"id"}), + Hydrate: opengovernance.GetPackage, }, Columns: []*plugin.Column{ // Basic details columns diff --git a/steampipe-plugin-github/github/table_github_package_version.go b/steampipe-plugin-github/github/table_github_package_version.go index 25b7c477..1e6606c0 100644 --- a/steampipe-plugin-github/github/table_github_package_version.go +++ b/steampipe-plugin-github/github/table_github_package_version.go @@ -14,7 +14,8 @@ func tableGitHubPackageVersion() *plugin.Table { Hydrate: opengovernance.ListPackageVersion, }, Get: &plugin.GetConfig{ - Hydrate: opengovernance.GetPackageVersion, + KeyColumns: plugin.AllColumns([]string{"id"}), + Hydrate: opengovernance.GetPackageVersion, }, Columns: []*plugin.Column{ // Basic details columns diff --git a/steampipe-plugin-github/github/table_github_rubygems_package.go b/steampipe-plugin-github/github/table_github_rubygems_package.go index e88ca8ec..dd6c77eb 100644 --- a/steampipe-plugin-github/github/table_github_rubygems_package.go +++ b/steampipe-plugin-github/github/table_github_rubygems_package.go @@ -13,7 +13,8 @@ func tableGitHubRubyGemsPackage() *plugin.Table { Hydrate: opengovernance.ListPackage, }, Get: &plugin.GetConfig{ - Hydrate: opengovernance.GetPackage, + KeyColumns: plugin.AllColumns([]string{"id"}), + Hydrate: opengovernance.GetPackage, }, Columns: []*plugin.Column{ // Basic details columns