From 70a26f702ea195b3c9f69c60589ca61d8df6e283 Mon Sep 17 00:00:00 2001 From: artaasadi Date: Tue, 5 Nov 2024 22:47:44 +0100 Subject: [PATCH] fix: change es message structure --- pkg/describe/types.go | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/pkg/describe/types.go b/pkg/describe/types.go index 752ebc3..e1d462a 100644 --- a/pkg/describe/types.go +++ b/pkg/describe/types.go @@ -32,26 +32,8 @@ type DescribeWorkerInput struct { ExtraInputs map[string][]string `json:"extraInputs"` } -// Connector source.Type -// -// ResourceName string -// ResourceLabel string -// ServiceName string -// -// Tags map[string][]string -// -// ListDescriber ResourceDescriber -// GetDescriber SingleResourceDescriber -// -// TerraformName []string -// TerraformServiceName string -// -// FastDiscovery bool -// CostDiscovery bool -// Summarize bool type ResourceType interface { - GetConnector() integration.Type + GetIntegrationType() integration.Type GetResourceName() string - GetResourceLabel() string GetTags() map[string][]string }