driftctl/pkg/remote/google/google_bigquery_table_enume...

50 lines
1.3 KiB
Go

package google
import (
remoteerror "github.com/cloudskiff/driftctl/pkg/remote/error"
"github.com/cloudskiff/driftctl/pkg/remote/google/repository"
"github.com/cloudskiff/driftctl/pkg/resource"
"github.com/cloudskiff/driftctl/pkg/resource/google"
)
type GoogleBigqueryTableEnumerator struct {
repository repository.AssetRepository
factory resource.ResourceFactory
}
func NewGoogleBigqueryTableEnumerator(repo repository.AssetRepository, factory resource.ResourceFactory) *GoogleBigqueryTableEnumerator {
return &GoogleBigqueryTableEnumerator{
repository: repo,
factory: factory,
}
}
func (e *GoogleBigqueryTableEnumerator) SupportedType() resource.ResourceType {
return google.GoogleBigqueryTableResourceType
}
func (e *GoogleBigqueryTableEnumerator) Enumerate() ([]*resource.Resource, error) {
resources, err := e.repository.SearchAllTables()
if err != nil {
return nil, remoteerror.NewResourceListingError(err, string(e.SupportedType()))
}
results := make([]*resource.Resource, 0, len(resources))
for _, res := range resources {
results = append(
results,
e.factory.CreateAbstractResource(
string(e.SupportedType()),
trimResourceName(res.GetName()),
map[string]interface{}{
"name": res.DisplayName,
},
),
)
}
return results, err
}