diff --git a/apis/coralogix/v1alpha1/alert_types.go b/apis/coralogix/v1alpha1/alert_types.go index e8da2e4..fd46bcc 100644 --- a/apis/coralogix/v1alpha1/alert_types.go +++ b/apis/coralogix/v1alpha1/alert_types.go @@ -18,7 +18,6 @@ package v1alpha1 import ( "context" - "encoding/json" "fmt" "reflect" "strconv" @@ -28,10 +27,12 @@ import ( utils "github.com/coralogix/coralogix-operator/apis" "github.com/coralogix/coralogix-operator/controllers/clientset" alerts "github.com/coralogix/coralogix-operator/controllers/clientset/grpc/alerts/v2" + webhooks "github.com/coralogix/coralogix-operator/controllers/clientset/grpc/outbound-webhooks" "google.golang.org/protobuf/types/known/wrapperspb" "k8s.io/apimachinery/pkg/api/resource" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/utils/ptr" + "sigs.k8s.io/controller-runtime/pkg/log" ) // EDIT THIS FILE! THIS IS SCAFFOLDING FOR YOU TO OWN! @@ -112,7 +113,7 @@ var ( } msInHour = int(time.Hour.Milliseconds()) msInMinute = int(time.Minute.Milliseconds()) - WebhooksClient clientset.WebhooksClientInterface + WebhooksClient clientset.OutboundWebhooksClientInterface ) type ProtoTimeFrameAndRelativeTimeFrame struct { @@ -1066,17 +1067,17 @@ func expandNotification(ctx context.Context, notification Notification) (*alerts } func searchIntegrationID(ctx context.Context, name string) (uint32, error) { - webhooksStr, err := WebhooksClient.GetWebhooks(ctx) + log := log.FromContext(ctx) + log.V(1).Info("Listing all outgoing webhooks") + listWebhooksResp, err := WebhooksClient.ListAllOutgoingWebhooks(ctx, &webhooks.ListAllOutgoingWebhooksRequest{}) if err != nil { + log.Error(err, "Failed to list all outgoing webhooks") return 0, err } - var maps []map[string]interface{} - if err = json.Unmarshal([]byte(webhooksStr), &maps); err != nil { - return 0, err - } - for _, m := range maps { - if m["alias"] == name { - return uint32(m["id"].(float64)), nil + + for _, webhook := range listWebhooksResp.GetDeployed() { + if webhook.GetName().GetValue() == name { + return webhook.GetExternalId().GetValue(), nil } } return 0, fmt.Errorf("integration with name %s not found", name) diff --git a/controllers/alphacontrollers/alert_controller.go b/controllers/alphacontrollers/alert_controller.go index ad86098..510c907 100644 --- a/controllers/alphacontrollers/alert_controller.go +++ b/controllers/alphacontrollers/alert_controller.go @@ -18,12 +18,12 @@ package alphacontrollers import ( "context" - "encoding/json" stdErr "errors" "fmt" "strconv" "time" + webhooks "github.com/coralogix/coralogix-operator/controllers/clientset/grpc/outbound-webhooks" "github.com/go-logr/logr" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" @@ -76,7 +76,7 @@ func (r *AlertReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl "namespace", req.NamespacedName.Namespace, ) - coralogixv1alpha1.WebhooksClient = r.CoralogixClientSet.Webhooks() + coralogixv1alpha1.WebhooksClient = r.CoralogixClientSet.OutboundWebhooks() alert := coralogixv1alpha1.NewAlert() if err = r.Client.Get(ctx, req.NamespacedName, alert); err != nil { @@ -159,6 +159,25 @@ func (r *AlertReconciler) update(ctx context.Context, return err } + remoteUpdatedAlert, err := r.CoralogixClientSet.Alerts().GetAlert(ctx, &alerts.GetAlertByUniqueIdRequest{ + Id: wrapperspb.String(*alert.Status.ID), + }) + if err != nil { + log.Error(err, "Error on getting updated alert") + return err + } + status, err = getStatus(ctx, remoteUpdatedAlert.GetAlert(), alert.Spec) + if err != nil { + log.Error(err, "Error on getting status") + return err + } + + alert.Status = status + if err = r.Update(ctx, alert); err != nil { + log.Error(err, "Error on updating alert status") + return err + } + return nil } @@ -1043,17 +1062,15 @@ func flattenNotification(ctx context.Context, notification *alerts.AlertNotifica switch integration := notification.GetIntegrationType().(type) { case *alerts.AlertNotification_IntegrationId: + log := log.FromContext(ctx) id := strconv.Itoa(int(integration.IntegrationId.GetValue())) - webhookStr, err := coralogixv1alpha1.WebhooksClient.GetWebhook(ctx, id) + log.V(1).Info("get webhook", "id", id) + webhook, err := coralogixv1alpha1.WebhooksClient.GetOutboundWebhook(ctx, &webhooks.GetOutgoingWebhookRequest{Id: wrapperspb.String(id)}) if err != nil { + log.Error(err, "error on get webhook") return flattenedNotification, fmt.Errorf("error on get webhook - %w", err) } - var m map[string]interface{} - if err = json.Unmarshal([]byte(webhookStr), &m); err != nil { - return flattenedNotification, fmt.Errorf("error on unmarshal webhook - %w", err) - } - flattenedNotification.IntegrationName = new(string) - *flattenedNotification.IntegrationName = m["alias"].(string) + flattenedNotification.IntegrationName = utils.WrapperspbStringToStringPointer(webhook.GetWebhook().GetName()) case *alerts.AlertNotification_Recipients: flattenedNotification.EmailRecipients = utils.WrappedStringSliceToStringSlice(integration.Recipients.Emails) } diff --git a/controllers/alphacontrollers/alert_controller_test.go b/controllers/alphacontrollers/alert_controller_test.go index 52fc9fe..fb67549 100644 --- a/controllers/alphacontrollers/alert_controller_test.go +++ b/controllers/alphacontrollers/alert_controller_test.go @@ -58,7 +58,7 @@ type PrepareParams struct { ctx context.Context clientSet *mock_clientset.MockClientSetInterface alertsClient *mock_clientset.MockAlertsClientInterface - webhooksClient *mock_clientset.MockWebhooksClientInterface + webhooksClient *mock_clientset.MockOutboundWebhooksClientInterface alert *coralogixv1alpha1.Alert remoteAlert *alerts.Alert } @@ -194,11 +194,11 @@ func TestAlertCreation(t *testing.T) { alertsClient := mock_clientset.NewMockAlertsClientInterface(controller) // Creating webhooks client. - webhooksClient := mock_clientset.NewMockWebhooksClientInterface(controller) + webhooksClient := mock_clientset.NewMockOutboundWebhooksClientInterface(controller) // Preparing common mocks. clientSet.EXPECT().Alerts().MaxTimes(1).MinTimes(1).Return(alertsClient) - clientSet.EXPECT().Webhooks().Return(webhooksClient).AnyTimes() + clientSet.EXPECT().OutboundWebhooks().Return(webhooksClient).AnyTimes() ctx, cancel := context.WithCancel(context.Background()) defer cancel() @@ -354,7 +354,7 @@ func TestAlertUpdate(t *testing.T) { }, prepare: func(params PrepareParams) { params.alertsClient.EXPECT(). - GetAlert(params.alert.Namespace, coralogixv1alpha1.NewAlert()). + GetAlert(params.ctx, gomock.Any()). Return(&alerts.GetAlertByUniqueIdResponse{Alert: params.remoteAlert}, nil). MinTimes(1).MaxTimes(1) @@ -368,7 +368,7 @@ func TestAlertUpdate(t *testing.T) { params.alertsClient.EXPECT().GetAlert(params.ctx, gomock.Any()). Return(&alerts.GetAlertByUniqueIdResponse{Alert: params.remoteAlert}, nil). - MinTimes(1).MaxTimes(1) + MinTimes(1).MaxTimes(2) }, }, { @@ -413,7 +413,7 @@ func TestAlertUpdate(t *testing.T) { }, prepare: func(params PrepareParams) { params.alertsClient.EXPECT(). - GetAlert(params.alert.Namespace, coralogixv1alpha1.NewAlert()). + GetAlert(params.ctx, gomock.Any()). Return(&alerts.GetAlertByUniqueIdResponse{Alert: params.remoteAlert}, nil). MinTimes(1).MaxTimes(1) @@ -444,11 +444,11 @@ func TestAlertUpdate(t *testing.T) { alertsClient := mock_clientset.NewMockAlertsClientInterface(controller) // Creating webhooks client. - webhooksClient := mock_clientset.NewMockWebhooksClientInterface(controller) + webhooksClient := mock_clientset.NewMockOutboundWebhooksClientInterface(controller) // Preparing common mocks. clientSet.EXPECT().Alerts().MaxTimes(1).MinTimes(1).Return(alertsClient) - clientSet.EXPECT().Webhooks().Return(webhooksClient).AnyTimes() + clientSet.EXPECT().OutboundWebhooks().Return(webhooksClient).AnyTimes() ctx, cancel := context.WithCancel(context.Background()) defer cancel() @@ -654,11 +654,11 @@ func TestAlertDelete(t *testing.T) { alertsClient := mock_clientset.NewMockAlertsClientInterface(controller) // Creating webhooks client. - webhooksClient := mock_clientset.NewMockWebhooksClientInterface(controller) + webhooksClient := mock_clientset.NewMockOutboundWebhooksClientInterface(controller) // Preparing common mocks. clientSet.EXPECT().Alerts().MaxTimes(1).MinTimes(1).Return(alertsClient) - clientSet.EXPECT().Webhooks().Return(webhooksClient).AnyTimes() + clientSet.EXPECT().OutboundWebhooks().Return(webhooksClient).AnyTimes() ctx, cancel := context.WithCancel(context.Background()) defer cancel() diff --git a/controllers/clientset/actions-client.go b/controllers/clientset/actions-client.go deleted file mode 100644 index 01ba249..0000000 --- a/controllers/clientset/actions-client.go +++ /dev/null @@ -1,67 +0,0 @@ -package clientset - -import ( - "context" - - actions "github.com/coralogix/coralogix-operator/controllers/clientset/grpc/actions/v2" -) - -type ActionsClient struct { - callPropertiesCreator *CallPropertiesCreator -} - -func (a ActionsClient) CreateAction(ctx context.Context, req *actions.CreateActionRequest) (*actions.CreateActionResponse, error) { - callProperties, err := a.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - client := actions.NewActionsServiceClient(conn) - - return client.CreateAction(callProperties.Ctx, req, callProperties.CallOptions...) -} - -func (a ActionsClient) GetAction(ctx context.Context, req *actions.GetActionRequest) (*actions.GetActionResponse, error) { - callProperties, err := a.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - client := actions.NewActionsServiceClient(conn) - - return client.GetAction(callProperties.Ctx, req, callProperties.CallOptions...) -} - -func (a ActionsClient) UpdateAction(ctx context.Context, req *actions.ReplaceActionRequest) (*actions.ReplaceActionResponse, error) { - callProperties, err := a.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - client := actions.NewActionsServiceClient(conn) - - return client.ReplaceAction(callProperties.Ctx, req, callProperties.CallOptions...) -} - -func (a ActionsClient) DeleteAction(ctx context.Context, req *actions.DeleteActionRequest) (*actions.DeleteActionResponse, error) { - callProperties, err := a.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - client := actions.NewActionsServiceClient(conn) - - return client.DeleteAction(callProperties.Ctx, req, callProperties.CallOptions...) -} - -func NewActionsClient(c *CallPropertiesCreator) *ActionsClient { - return &ActionsClient{callPropertiesCreator: c} -} diff --git a/controllers/clientset/clientset.go b/controllers/clientset/clientset.go index 0f8573d..4564cac 100644 --- a/controllers/clientset/clientset.go +++ b/controllers/clientset/clientset.go @@ -5,7 +5,6 @@ type ClientSetInterface interface { RuleGroups() RuleGroupsClientInterface Alerts() AlertsClientInterface RecordingRuleGroups() RecordingRulesGroupsClientInterface - Webhooks() WebhooksClientInterface OutboundWebhooks() OutboundWebhooksClientInterface } @@ -13,7 +12,6 @@ type ClientSet struct { ruleGroups *RuleGroupsClient alerts *AlertsClient recordingRuleGroups *RecordingRulesGroupsClient - webhooks *WebhooksClient outboundWebhooks *OutboundWebhooksClient } @@ -25,10 +23,6 @@ func (c *ClientSet) Alerts() AlertsClientInterface { return c.alerts } -func (c *ClientSet) Webhooks() WebhooksClientInterface { - return c.webhooks -} - func (c *ClientSet) RecordingRuleGroups() RecordingRulesGroupsClientInterface { return c.recordingRuleGroups } @@ -44,7 +38,6 @@ func NewClientSet(targetUrl, apiKey string) ClientSetInterface { ruleGroups: NewRuleGroupsClient(apikeyCPC), alerts: NewAlertsClient(apikeyCPC), recordingRuleGroups: NewRecordingRuleGroupsClient(apikeyCPC), - webhooks: NewWebhooksClient(apikeyCPC), outboundWebhooks: NewOutboundWebhooksClient(apikeyCPC), } } diff --git a/controllers/clientset/dashboards-client.go b/controllers/clientset/dashboards-client.go deleted file mode 100644 index da54d3e..0000000 --- a/controllers/clientset/dashboards-client.go +++ /dev/null @@ -1,67 +0,0 @@ -package clientset - -import ( - "context" - - dashboards "github.com/coralogix/coralogix-operator/controllers/clientset/grpc/coralogix-dashboards/v1" -) - -type DashboardsClient struct { - callPropertiesCreator *CallPropertiesCreator -} - -func (d DashboardsClient) CreateDashboard(ctx context.Context, req *dashboards.CreateDashboardRequest) (*dashboards.CreateDashboardResponse, error) { - callProperties, err := d.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - client := dashboards.NewDashboardsServiceClient(conn) - - return client.CreateDashboard(callProperties.Ctx, req, callProperties.CallOptions...) -} - -func (d DashboardsClient) GetDashboard(ctx context.Context, req *dashboards.GetDashboardRequest) (*dashboards.GetDashboardResponse, error) { - callProperties, err := d.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - client := dashboards.NewDashboardsServiceClient(conn) - - return client.GetDashboard(callProperties.Ctx, req, callProperties.CallOptions...) -} - -func (d DashboardsClient) UpdateDashboard(ctx context.Context, req *dashboards.ReplaceDashboardRequest) (*dashboards.ReplaceDashboardResponse, error) { - callProperties, err := d.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - client := dashboards.NewDashboardsServiceClient(conn) - - return client.ReplaceDashboard(callProperties.Ctx, req, callProperties.CallOptions...) -} - -func (d DashboardsClient) DeleteDashboard(ctx context.Context, req *dashboards.DeleteDashboardRequest) (*dashboards.DeleteDashboardResponse, error) { - callProperties, err := d.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - client := dashboards.NewDashboardsServiceClient(conn) - - return client.DeleteDashboard(callProperties.Ctx, req, callProperties.CallOptions...) -} - -func NewDashboardsClient(c *CallPropertiesCreator) *DashboardsClient { - return &DashboardsClient{callPropertiesCreator: c} -} diff --git a/controllers/clientset/data-sets-client.go b/controllers/clientset/data-sets-client.go deleted file mode 100644 index 2d0fa4c..0000000 --- a/controllers/clientset/data-sets-client.go +++ /dev/null @@ -1,71 +0,0 @@ -package clientset - -import ( - "context" - - enrichment "github.com/coralogix/coralogix-operator/controllers/clientset/grpc/enrichment/v1" -) - -type DataSetClient struct { - callPropertiesCreator *CallPropertiesCreator -} - -func (d DataSetClient) CreatDataSet(ctx context.Context, req *enrichment.CreateCustomEnrichmentRequest) (*enrichment.CreateCustomEnrichmentResponse, error) { - callProperties, err := d.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - - client := enrichment.NewCustomEnrichmentServiceClient(conn) - - return client.CreateCustomEnrichment(callProperties.Ctx, req, callProperties.CallOptions...) -} - -func (d DataSetClient) GetDataSet(ctx context.Context, req *enrichment.GetCustomEnrichmentRequest) (*enrichment.GetCustomEnrichmentResponse, error) { - callProperties, err := d.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - - client := enrichment.NewCustomEnrichmentServiceClient(conn) - - return client.GetCustomEnrichment(callProperties.Ctx, req, callProperties.CallOptions...) -} - -func (d DataSetClient) UpdateDataSet(ctx context.Context, req *enrichment.UpdateCustomEnrichmentRequest) (*enrichment.UpdateCustomEnrichmentResponse, error) { - callProperties, err := d.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - - client := enrichment.NewCustomEnrichmentServiceClient(conn) - - return client.UpdateCustomEnrichment(callProperties.Ctx, req, callProperties.CallOptions...) -} - -func (d DataSetClient) DeleteDataSet(ctx context.Context, req *enrichment.DeleteCustomEnrichmentRequest) (*enrichment.DeleteCustomEnrichmentResponse, error) { - callProperties, err := d.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - - client := enrichment.NewCustomEnrichmentServiceClient(conn) - - return client.DeleteCustomEnrichment(callProperties.Ctx, req, callProperties.CallOptions...) -} - -func NewDataSetClient(c *CallPropertiesCreator) *DataSetClient { - return &DataSetClient{callPropertiesCreator: c} -} diff --git a/controllers/clientset/enrichments-client.go b/controllers/clientset/enrichments-client.go deleted file mode 100644 index 2b6ff4b..0000000 --- a/controllers/clientset/enrichments-client.go +++ /dev/null @@ -1,150 +0,0 @@ -package clientset - -import ( - "context" - - enrichment "github.com/coralogix/coralogix-operator/controllers/clientset/grpc/enrichment/v1" - - "google.golang.org/protobuf/types/known/wrapperspb" -) - -type EnrichmentsClient struct { - callPropertiesCreator *CallPropertiesCreator -} - -func (e EnrichmentsClient) CreateEnrichments(ctx context.Context, req []*enrichment.EnrichmentRequestModel) ([]*enrichment.Enrichment, error) { - callProperties, err := e.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - client := enrichment.NewEnrichmentServiceClient(conn) - - addReq := &enrichment.AddEnrichmentsRequest{RequestEnrichments: req} - resp, err := client.AddEnrichments(callProperties.Ctx, addReq, callProperties.CallOptions...) - if err != nil { - return nil, err - } - - enrichments := resp.GetEnrichments() - from := len(enrichments) - len(req) - to := len(enrichments) - return enrichments[from:to], nil -} - -func (e EnrichmentsClient) GetEnrichmentsByType(ctx context.Context, enrichmentType string) ([]*enrichment.Enrichment, error) { - callProperties, err := e.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - client := enrichment.NewEnrichmentServiceClient(conn) - - resp, err := client.GetEnrichments(callProperties.Ctx, &enrichment.GetEnrichmentsRequest{}, callProperties.CallOptions...) - if err != nil { - return nil, err - } - - result := make([]*enrichment.Enrichment, 0) - for _, enrichment := range resp.GetEnrichments() { - if enrichment.GetEnrichmentType().String() == enrichmentType+":{}" { - result = append(result, enrichment) - } - } - - return result, nil -} - -func (e EnrichmentsClient) GetCustomEnrichments(ctx context.Context, customEnrichmentId uint32) ([]*enrichment.Enrichment, error) { - callProperties, err := e.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - client := enrichment.NewEnrichmentServiceClient(conn) - - resp, err := client.GetEnrichments(callProperties.Ctx, &enrichment.GetEnrichmentsRequest{}, callProperties.CallOptions...) - if err != nil { - return nil, err - } - - result := make([]*enrichment.Enrichment, 0) - for _, enrichment := range resp.GetEnrichments() { - if customEnrichment := enrichment.GetEnrichmentType().GetCustomEnrichment(); customEnrichment != nil && customEnrichment.GetId().GetValue() == customEnrichmentId { - result = append(result, enrichment) - } - } - - return result, nil -} - -func (e EnrichmentsClient) UpdateEnrichments(ctx context.Context, ids []uint32, req []*enrichment.EnrichmentRequestModel) ([]*enrichment.Enrichment, error) { - err := e.DeleteEnrichments(ctx, ids) - if err != nil { - return nil, err - } - return e.CreateEnrichments(ctx, req) -} - -func (e EnrichmentsClient) DeleteEnrichments(ctx context.Context, ids []uint32) error { - callProperties, err := e.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return err - } - - conn := callProperties.Connection - defer conn.Close() - - client := enrichment.NewEnrichmentServiceClient(conn) - - enrichmentIds := make([]*wrapperspb.UInt32Value, 0, len(ids)) - for _, id := range ids { - enrichmentIds = append(enrichmentIds, wrapperspb.UInt32(id)) - } - - req := &enrichment.RemoveEnrichmentsRequest{ - EnrichmentIds: enrichmentIds, - } - - _, err = client.RemoveEnrichments(callProperties.Ctx, req, callProperties.CallOptions...) - return err -} - -func (e EnrichmentsClient) DeleteEnrichmentsByType(ctx context.Context, enrichmentType string) error { - enrichmentsToDelete, err := e.GetEnrichmentsByType(ctx, enrichmentType) - if err != nil { - return err - } - - callProperties, err := e.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return err - } - - conn := callProperties.Connection - defer conn.Close() - - client := enrichment.NewEnrichmentServiceClient(conn) - - enrichmentIds := make([]*wrapperspb.UInt32Value, 0, len(enrichmentsToDelete)) - for _, enrichment := range enrichmentsToDelete { - enrichmentIds = append(enrichmentIds, wrapperspb.UInt32(enrichment.GetId())) - } - - req := &enrichment.RemoveEnrichmentsRequest{ - EnrichmentIds: enrichmentIds, - } - - _, err = client.RemoveEnrichments(callProperties.Ctx, req, callProperties.CallOptions...) - return err -} - -func NewEnrichmentClient(c *CallPropertiesCreator) *EnrichmentsClient { - return &EnrichmentsClient{callPropertiesCreator: c} -} diff --git a/controllers/clientset/grafana-client.go b/controllers/clientset/grafana-client.go deleted file mode 100644 index 6a0c0c9..0000000 --- a/controllers/clientset/grafana-client.go +++ /dev/null @@ -1,74 +0,0 @@ -package clientset - -import ( - "context" - "encoding/json" - "fmt" - "strings" - - "github.com/coralogix/coralogix-operator/controllers/clientset/rest" - - gapi "github.com/grafana/grafana-api-golang-client" -) - -type GrafanaDashboardClient struct { - targetUrl string - client *rest.Client -} - -func (g GrafanaDashboardClient) CreateGrafanaDashboard(ctx context.Context, dashboard gapi.Dashboard) (*gapi.DashboardSaveResponse, error) { - body, err := json.Marshal(dashboard) - if err != nil { - return nil, err - } - - bodyResp, err := g.client.Post(ctx, "/grafana/api/dashboards/db", "application/json", string(body)) - if err != nil { - return nil, err - } - - var dashboardResp gapi.DashboardSaveResponse - err = json.Unmarshal([]byte(bodyResp), &dashboardResp) - if err != nil { - return nil, err - } - - return &dashboardResp, nil -} - -func (g GrafanaDashboardClient) GetGrafanaDashboard(ctx context.Context, uid string) (*gapi.Dashboard, error) { - bodyResp, err := g.client.Get(ctx, fmt.Sprintf("/grafana/api/dashboards/uid/%s", uid)) - if err != nil { - return nil, err - } - - var dashboardResp gapi.Dashboard - err = json.Unmarshal([]byte(bodyResp), &dashboardResp) - if err != nil { - return nil, err - } - - return &dashboardResp, nil -} - -func (g GrafanaDashboardClient) UpdateGrafanaDashboard(ctx context.Context, dashboard gapi.Dashboard) (*gapi.DashboardSaveResponse, error) { - dashboard.Overwrite = true - return g.CreateGrafanaDashboard(ctx, dashboard) -} - -func (g GrafanaDashboardClient) DeleteGrafanaDashboard(ctx context.Context, uid string) error { - _, err := g.client.Delete(ctx, fmt.Sprintf("/grafana/api/dashboards/uid/%s", uid)) - return err - -} - -func (g GrafanaDashboardClient) GetTargetURL() string { - return g.targetUrl - -} - -func NewGrafanaClient(c *CallPropertiesCreator) *GrafanaDashboardClient { - targetUrl := "https://" + strings.Replace(c.targetUrl, "grpc", "http", 1) - client := rest.NewRestClient(targetUrl, c.apiKey) - return &GrafanaDashboardClient{client: client, targetUrl: targetUrl} -} diff --git a/controllers/clientset/grpc/actions/v2/actions_service.pb.go b/controllers/clientset/grpc/actions/v2/actions_service.pb.go deleted file mode 100644 index cc4a2ad..0000000 --- a/controllers/clientset/grpc/actions/v2/actions_service.pb.go +++ /dev/null @@ -1,1227 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/actions/v2/actions_service.proto - -package __ - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type SourceType int32 - -const ( - SourceType_SOURCE_TYPE_UNSPECIFIED SourceType = 0 - SourceType_SOURCE_TYPE_LOG SourceType = 1 - SourceType_SOURCE_TYPE_DATA_MAP SourceType = 2 -) - -// Enum value maps for SourceType. -var ( - SourceType_name = map[int32]string{ - 0: "SOURCE_TYPE_UNSPECIFIED", - 1: "SOURCE_TYPE_LOG", - 2: "SOURCE_TYPE_DATA_MAP", - } - SourceType_value = map[string]int32{ - "SOURCE_TYPE_UNSPECIFIED": 0, - "SOURCE_TYPE_LOG": 1, - "SOURCE_TYPE_DATA_MAP": 2, - } -) - -func (x SourceType) Enum() *SourceType { - p := new(SourceType) - *p = x - return p -} - -func (x SourceType) String() string { - return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) -} - -func (SourceType) Descriptor() protoreflect.EnumDescriptor { - return file_com_coralogixapis_actions_v2_actions_service_proto_enumTypes[0].Descriptor() -} - -func (SourceType) Type() protoreflect.EnumType { - return &file_com_coralogixapis_actions_v2_actions_service_proto_enumTypes[0] -} - -func (x SourceType) Number() protoreflect.EnumNumber { - return protoreflect.EnumNumber(x) -} - -// Deprecated: Use SourceType.Descriptor instead. -func (SourceType) EnumDescriptor() ([]byte, []int) { - return file_com_coralogixapis_actions_v2_actions_service_proto_rawDescGZIP(), []int{0} -} - -type Action struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Id *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` - Name *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` - Url *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"` - IsHidden *wrapperspb.BoolValue `protobuf:"bytes,4,opt,name=is_hidden,json=isHidden,proto3" json:"is_hidden,omitempty"` - IsPrivate *wrapperspb.BoolValue `protobuf:"bytes,5,opt,name=is_private,json=isPrivate,proto3" json:"is_private,omitempty"` - SourceType SourceType `protobuf:"varint,6,opt,name=source_type,json=sourceType,proto3,enum=com.coralogixapis.actions.v2.SourceType" json:"source_type,omitempty"` - ApplicationNames []*wrapperspb.StringValue `protobuf:"bytes,7,rep,name=application_names,json=applicationNames,proto3" json:"application_names,omitempty"` - SubsystemNames []*wrapperspb.StringValue `protobuf:"bytes,8,rep,name=subsystem_names,json=subsystemNames,proto3" json:"subsystem_names,omitempty"` - CreatedBy *wrapperspb.StringValue `protobuf:"bytes,9,opt,name=created_by,json=createdBy,proto3" json:"created_by,omitempty"` -} - -func (x *Action) Reset() { - *x = Action{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *Action) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*Action) ProtoMessage() {} - -func (x *Action) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use Action.ProtoReflect.Descriptor instead. -func (*Action) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_actions_v2_actions_service_proto_rawDescGZIP(), []int{0} -} - -func (x *Action) GetId() *wrapperspb.StringValue { - if x != nil { - return x.Id - } - return nil -} - -func (x *Action) GetName() *wrapperspb.StringValue { - if x != nil { - return x.Name - } - return nil -} - -func (x *Action) GetUrl() *wrapperspb.StringValue { - if x != nil { - return x.Url - } - return nil -} - -func (x *Action) GetIsHidden() *wrapperspb.BoolValue { - if x != nil { - return x.IsHidden - } - return nil -} - -func (x *Action) GetIsPrivate() *wrapperspb.BoolValue { - if x != nil { - return x.IsPrivate - } - return nil -} - -func (x *Action) GetSourceType() SourceType { - if x != nil { - return x.SourceType - } - return SourceType_SOURCE_TYPE_UNSPECIFIED -} - -func (x *Action) GetApplicationNames() []*wrapperspb.StringValue { - if x != nil { - return x.ApplicationNames - } - return nil -} - -func (x *Action) GetSubsystemNames() []*wrapperspb.StringValue { - if x != nil { - return x.SubsystemNames - } - return nil -} - -func (x *Action) GetCreatedBy() *wrapperspb.StringValue { - if x != nil { - return x.CreatedBy - } - return nil -} - -type CreateActionRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Name *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` - Url *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"` - IsPrivate *wrapperspb.BoolValue `protobuf:"bytes,3,opt,name=is_private,json=isPrivate,proto3" json:"is_private,omitempty"` - SourceType SourceType `protobuf:"varint,4,opt,name=source_type,json=sourceType,proto3,enum=com.coralogixapis.actions.v2.SourceType" json:"source_type,omitempty"` - ApplicationNames []*wrapperspb.StringValue `protobuf:"bytes,5,rep,name=application_names,json=applicationNames,proto3" json:"application_names,omitempty"` - SubsystemNames []*wrapperspb.StringValue `protobuf:"bytes,6,rep,name=subsystem_names,json=subsystemNames,proto3" json:"subsystem_names,omitempty"` -} - -func (x *CreateActionRequest) Reset() { - *x = CreateActionRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *CreateActionRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*CreateActionRequest) ProtoMessage() {} - -func (x *CreateActionRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use CreateActionRequest.ProtoReflect.Descriptor instead. -func (*CreateActionRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_actions_v2_actions_service_proto_rawDescGZIP(), []int{1} -} - -func (x *CreateActionRequest) GetName() *wrapperspb.StringValue { - if x != nil { - return x.Name - } - return nil -} - -func (x *CreateActionRequest) GetUrl() *wrapperspb.StringValue { - if x != nil { - return x.Url - } - return nil -} - -func (x *CreateActionRequest) GetIsPrivate() *wrapperspb.BoolValue { - if x != nil { - return x.IsPrivate - } - return nil -} - -func (x *CreateActionRequest) GetSourceType() SourceType { - if x != nil { - return x.SourceType - } - return SourceType_SOURCE_TYPE_UNSPECIFIED -} - -func (x *CreateActionRequest) GetApplicationNames() []*wrapperspb.StringValue { - if x != nil { - return x.ApplicationNames - } - return nil -} - -func (x *CreateActionRequest) GetSubsystemNames() []*wrapperspb.StringValue { - if x != nil { - return x.SubsystemNames - } - return nil -} - -type CreateActionResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Action *Action `protobuf:"bytes,1,opt,name=action,proto3" json:"action,omitempty"` -} - -func (x *CreateActionResponse) Reset() { - *x = CreateActionResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[2] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *CreateActionResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*CreateActionResponse) ProtoMessage() {} - -func (x *CreateActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[2] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use CreateActionResponse.ProtoReflect.Descriptor instead. -func (*CreateActionResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_actions_v2_actions_service_proto_rawDescGZIP(), []int{2} -} - -func (x *CreateActionResponse) GetAction() *Action { - if x != nil { - return x.Action - } - return nil -} - -type ReplaceActionRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Action *Action `protobuf:"bytes,1,opt,name=action,proto3" json:"action,omitempty"` -} - -func (x *ReplaceActionRequest) Reset() { - *x = ReplaceActionRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[3] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ReplaceActionRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ReplaceActionRequest) ProtoMessage() {} - -func (x *ReplaceActionRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[3] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ReplaceActionRequest.ProtoReflect.Descriptor instead. -func (*ReplaceActionRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_actions_v2_actions_service_proto_rawDescGZIP(), []int{3} -} - -func (x *ReplaceActionRequest) GetAction() *Action { - if x != nil { - return x.Action - } - return nil -} - -type ReplaceActionResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Action *Action `protobuf:"bytes,1,opt,name=action,proto3" json:"action,omitempty"` -} - -func (x *ReplaceActionResponse) Reset() { - *x = ReplaceActionResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[4] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ReplaceActionResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ReplaceActionResponse) ProtoMessage() {} - -func (x *ReplaceActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[4] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ReplaceActionResponse.ProtoReflect.Descriptor instead. -func (*ReplaceActionResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_actions_v2_actions_service_proto_rawDescGZIP(), []int{4} -} - -func (x *ReplaceActionResponse) GetAction() *Action { - if x != nil { - return x.Action - } - return nil -} - -type DeleteActionRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Id *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` -} - -func (x *DeleteActionRequest) Reset() { - *x = DeleteActionRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[5] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *DeleteActionRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*DeleteActionRequest) ProtoMessage() {} - -func (x *DeleteActionRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[5] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use DeleteActionRequest.ProtoReflect.Descriptor instead. -func (*DeleteActionRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_actions_v2_actions_service_proto_rawDescGZIP(), []int{5} -} - -func (x *DeleteActionRequest) GetId() *wrapperspb.StringValue { - if x != nil { - return x.Id - } - return nil -} - -type DeleteActionResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *DeleteActionResponse) Reset() { - *x = DeleteActionResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[6] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *DeleteActionResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*DeleteActionResponse) ProtoMessage() {} - -func (x *DeleteActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[6] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use DeleteActionResponse.ProtoReflect.Descriptor instead. -func (*DeleteActionResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_actions_v2_actions_service_proto_rawDescGZIP(), []int{6} -} - -type GetActionRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Id *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` -} - -func (x *GetActionRequest) Reset() { - *x = GetActionRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[7] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetActionRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetActionRequest) ProtoMessage() {} - -func (x *GetActionRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[7] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GetActionRequest.ProtoReflect.Descriptor instead. -func (*GetActionRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_actions_v2_actions_service_proto_rawDescGZIP(), []int{7} -} - -func (x *GetActionRequest) GetId() *wrapperspb.StringValue { - if x != nil { - return x.Id - } - return nil -} - -type GetActionResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Action *Action `protobuf:"bytes,1,opt,name=action,proto3" json:"action,omitempty"` -} - -func (x *GetActionResponse) Reset() { - *x = GetActionResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[8] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetActionResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetActionResponse) ProtoMessage() {} - -func (x *GetActionResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[8] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GetActionResponse.ProtoReflect.Descriptor instead. -func (*GetActionResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_actions_v2_actions_service_proto_rawDescGZIP(), []int{8} -} - -func (x *GetActionResponse) GetAction() *Action { - if x != nil { - return x.Action - } - return nil -} - -type ListActionsRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *ListActionsRequest) Reset() { - *x = ListActionsRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[9] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ListActionsRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ListActionsRequest) ProtoMessage() {} - -func (x *ListActionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[9] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ListActionsRequest.ProtoReflect.Descriptor instead. -func (*ListActionsRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_actions_v2_actions_service_proto_rawDescGZIP(), []int{9} -} - -type ListActionsResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Actions []*Action `protobuf:"bytes,1,rep,name=actions,proto3" json:"actions,omitempty"` -} - -func (x *ListActionsResponse) Reset() { - *x = ListActionsResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[10] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ListActionsResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ListActionsResponse) ProtoMessage() {} - -func (x *ListActionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[10] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ListActionsResponse.ProtoReflect.Descriptor instead. -func (*ListActionsResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_actions_v2_actions_service_proto_rawDescGZIP(), []int{10} -} - -func (x *ListActionsResponse) GetActions() []*Action { - if x != nil { - return x.Actions - } - return nil -} - -type OrderActionsRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - PrivateActionsOrder map[string]*wrapperspb.UInt32Value `protobuf:"bytes,1,rep,name=private_actions_order,json=privateActionsOrder,proto3" json:"private_actions_order,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` - SharedActionsOrder map[string]*wrapperspb.UInt32Value `protobuf:"bytes,2,rep,name=shared_actions_order,json=sharedActionsOrder,proto3" json:"shared_actions_order,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` -} - -func (x *OrderActionsRequest) Reset() { - *x = OrderActionsRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[11] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *OrderActionsRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*OrderActionsRequest) ProtoMessage() {} - -func (x *OrderActionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[11] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use OrderActionsRequest.ProtoReflect.Descriptor instead. -func (*OrderActionsRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_actions_v2_actions_service_proto_rawDescGZIP(), []int{11} -} - -func (x *OrderActionsRequest) GetPrivateActionsOrder() map[string]*wrapperspb.UInt32Value { - if x != nil { - return x.PrivateActionsOrder - } - return nil -} - -func (x *OrderActionsRequest) GetSharedActionsOrder() map[string]*wrapperspb.UInt32Value { - if x != nil { - return x.SharedActionsOrder - } - return nil -} - -type OrderActionsResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *OrderActionsResponse) Reset() { - *x = OrderActionsResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[12] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *OrderActionsResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*OrderActionsResponse) ProtoMessage() {} - -func (x *OrderActionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[12] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use OrderActionsResponse.ProtoReflect.Descriptor instead. -func (*OrderActionsResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_actions_v2_actions_service_proto_rawDescGZIP(), []int{12} -} - -var File_com_coralogixapis_actions_v2_actions_service_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_actions_v2_actions_service_proto_rawDesc = []byte{ - 0x0a, 0x32, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x76, 0x32, 0x2f, 0x61, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1c, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, - 0x76, 0x32, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x22, 0xa6, 0x04, 0x0a, 0x06, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2c, 0x0a, - 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, - 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x02, 0x69, 0x64, 0x12, 0x30, 0x0a, 0x04, 0x6e, - 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, - 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2e, 0x0a, - 0x03, 0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, - 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x37, 0x0a, - 0x09, 0x69, 0x73, 0x5f, 0x68, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x08, 0x69, 0x73, - 0x48, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x12, 0x39, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x70, 0x72, 0x69, - 0x76, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42, 0x6f, 0x6f, - 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x09, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x61, 0x74, - 0x65, 0x12, 0x49, 0x0a, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, - 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, - 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, - 0x52, 0x0a, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x49, 0x0a, 0x11, - 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, - 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, - 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x45, 0x0a, 0x0f, 0x73, 0x75, 0x62, 0x73, 0x79, - 0x73, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, - 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0e, - 0x73, 0x75, 0x62, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x3b, - 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x18, 0x09, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, - 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x79, 0x22, 0x8f, 0x03, 0x0a, 0x13, - 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, - 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2e, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, - 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x39, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x70, 0x72, 0x69, 0x76, - 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42, 0x6f, 0x6f, 0x6c, - 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x09, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, - 0x12, 0x49, 0x0a, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, - 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, - 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, - 0x0a, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x49, 0x0a, 0x11, 0x61, - 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, - 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, - 0x61, 0x6c, 0x75, 0x65, 0x52, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x45, 0x0a, 0x0f, 0x73, 0x75, 0x62, 0x73, 0x79, 0x73, - 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, - 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0e, 0x73, - 0x75, 0x62, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x22, 0x54, 0x0a, - 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, - 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x61, 0x63, 0x74, - 0x69, 0x6f, 0x6e, 0x22, 0x54, 0x0a, 0x14, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x41, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x06, 0x61, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x63, 0x6f, - 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, - 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x52, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x55, 0x0a, 0x15, 0x52, 0x65, 0x70, - 0x6c, 0x61, 0x63, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x12, 0x3c, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x76, - 0x32, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x22, 0x43, 0x0a, 0x13, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, - 0x65, 0x52, 0x02, 0x69, 0x64, 0x22, 0x16, 0x0a, 0x14, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x41, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x40, 0x0a, - 0x10, 0x47, 0x65, 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x12, 0x2c, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, - 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x02, 0x69, 0x64, 0x22, - 0x51, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, - 0x2e, 0x76, 0x32, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x61, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x22, 0x14, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x55, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, - 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, - 0x3e, 0x0a, 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, - 0x32, 0x24, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, - 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x76, 0x32, 0x2e, - 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, - 0xdd, 0x03, 0x0a, 0x13, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x7e, 0x0a, 0x15, 0x70, 0x72, 0x69, 0x76, 0x61, - 0x74, 0x65, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, - 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x4a, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, - 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x50, 0x72, 0x69, 0x76, 0x61, 0x74, - 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x45, 0x6e, 0x74, - 0x72, 0x79, 0x52, 0x13, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x73, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x7b, 0x0a, 0x14, 0x73, 0x68, 0x61, 0x72, 0x65, - 0x64, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, - 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x49, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, - 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x41, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x45, 0x6e, 0x74, 0x72, 0x79, - 0x52, 0x12, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x4f, - 0x72, 0x64, 0x65, 0x72, 0x1a, 0x64, 0x0a, 0x18, 0x50, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x41, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x45, 0x6e, 0x74, 0x72, 0x79, - 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, - 0x65, 0x79, 0x12, 0x32, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x55, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, - 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x63, 0x0a, 0x17, 0x53, 0x68, - 0x61, 0x72, 0x65, 0x64, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x4f, 0x72, 0x64, 0x65, 0x72, - 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x32, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, - 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, - 0x16, 0x0a, 0x14, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2a, 0x58, 0x0a, 0x0a, 0x53, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1b, 0x0a, 0x17, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, - 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, - 0x10, 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x54, 0x59, 0x50, - 0x45, 0x5f, 0x4c, 0x4f, 0x47, 0x10, 0x01, 0x12, 0x18, 0x0a, 0x14, 0x53, 0x4f, 0x55, 0x52, 0x43, - 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x5f, 0x4d, 0x41, 0x50, 0x10, - 0x02, 0x32, 0xd1, 0x05, 0x0a, 0x0e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x53, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x12, 0x75, 0x0a, 0x0c, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, - 0x2e, 0x76, 0x32, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x63, 0x74, - 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x78, 0x0a, 0x0d, 0x52, - 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x32, 0x2e, 0x63, - 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, - 0x2e, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x52, 0x65, 0x70, 0x6c, - 0x61, 0x63, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x1a, 0x33, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, - 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x76, 0x32, 0x2e, - 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x75, 0x0a, 0x0c, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x41, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, - 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, - 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, 0x74, - 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x41, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x6c, 0x0a, 0x09, - 0x47, 0x65, 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2e, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x72, 0x0a, 0x0b, 0x4c, 0x69, - 0x73, 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x74, - 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x63, 0x6f, - 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, - 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x75, - 0x0a, 0x0c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x31, - 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, - 0x69, 0x73, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4f, 0x72, - 0x64, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x1a, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, - 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x76, 0x32, - 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_actions_v2_actions_service_proto_rawDescOnce sync.Once - file_com_coralogixapis_actions_v2_actions_service_proto_rawDescData = file_com_coralogixapis_actions_v2_actions_service_proto_rawDesc -) - -func file_com_coralogixapis_actions_v2_actions_service_proto_rawDescGZIP() []byte { - file_com_coralogixapis_actions_v2_actions_service_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_actions_v2_actions_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_actions_v2_actions_service_proto_rawDescData) - }) - return file_com_coralogixapis_actions_v2_actions_service_proto_rawDescData -} - -var file_com_coralogixapis_actions_v2_actions_service_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes = make([]protoimpl.MessageInfo, 15) -var file_com_coralogixapis_actions_v2_actions_service_proto_goTypes = []interface{}{ - (SourceType)(0), // 0: com.coralogixapis.actions.v2.SourceType - (*Action)(nil), // 1: com.coralogixapis.actions.v2.Action - (*CreateActionRequest)(nil), // 2: com.coralogixapis.actions.v2.CreateActionRequest - (*CreateActionResponse)(nil), // 3: com.coralogixapis.actions.v2.CreateActionResponse - (*ReplaceActionRequest)(nil), // 4: com.coralogixapis.actions.v2.ReplaceActionRequest - (*ReplaceActionResponse)(nil), // 5: com.coralogixapis.actions.v2.ReplaceActionResponse - (*DeleteActionRequest)(nil), // 6: com.coralogixapis.actions.v2.DeleteActionRequest - (*DeleteActionResponse)(nil), // 7: com.coralogixapis.actions.v2.DeleteActionResponse - (*GetActionRequest)(nil), // 8: com.coralogixapis.actions.v2.GetActionRequest - (*GetActionResponse)(nil), // 9: com.coralogixapis.actions.v2.GetActionResponse - (*ListActionsRequest)(nil), // 10: com.coralogixapis.actions.v2.ListActionsRequest - (*ListActionsResponse)(nil), // 11: com.coralogixapis.actions.v2.ListActionsResponse - (*OrderActionsRequest)(nil), // 12: com.coralogixapis.actions.v2.OrderActionsRequest - (*OrderActionsResponse)(nil), // 13: com.coralogixapis.actions.v2.OrderActionsResponse - nil, // 14: com.coralogixapis.actions.v2.OrderActionsRequest.PrivateActionsOrderEntry - nil, // 15: com.coralogixapis.actions.v2.OrderActionsRequest.SharedActionsOrderEntry - (*wrapperspb.StringValue)(nil), // 16: google.protobuf.StringValue - (*wrapperspb.BoolValue)(nil), // 17: google.protobuf.BoolValue - (*wrapperspb.UInt32Value)(nil), // 18: google.protobuf.UInt32Value -} -var file_com_coralogixapis_actions_v2_actions_service_proto_depIdxs = []int32{ - 16, // 0: com.coralogixapis.actions.v2.Action.id:type_name -> google.protobuf.StringValue - 16, // 1: com.coralogixapis.actions.v2.Action.name:type_name -> google.protobuf.StringValue - 16, // 2: com.coralogixapis.actions.v2.Action.url:type_name -> google.protobuf.StringValue - 17, // 3: com.coralogixapis.actions.v2.Action.is_hidden:type_name -> google.protobuf.BoolValue - 17, // 4: com.coralogixapis.actions.v2.Action.is_private:type_name -> google.protobuf.BoolValue - 0, // 5: com.coralogixapis.actions.v2.Action.source_type:type_name -> com.coralogixapis.actions.v2.SourceType - 16, // 6: com.coralogixapis.actions.v2.Action.application_names:type_name -> google.protobuf.StringValue - 16, // 7: com.coralogixapis.actions.v2.Action.subsystem_names:type_name -> google.protobuf.StringValue - 16, // 8: com.coralogixapis.actions.v2.Action.created_by:type_name -> google.protobuf.StringValue - 16, // 9: com.coralogixapis.actions.v2.CreateActionRequest.name:type_name -> google.protobuf.StringValue - 16, // 10: com.coralogixapis.actions.v2.CreateActionRequest.url:type_name -> google.protobuf.StringValue - 17, // 11: com.coralogixapis.actions.v2.CreateActionRequest.is_private:type_name -> google.protobuf.BoolValue - 0, // 12: com.coralogixapis.actions.v2.CreateActionRequest.source_type:type_name -> com.coralogixapis.actions.v2.SourceType - 16, // 13: com.coralogixapis.actions.v2.CreateActionRequest.application_names:type_name -> google.protobuf.StringValue - 16, // 14: com.coralogixapis.actions.v2.CreateActionRequest.subsystem_names:type_name -> google.protobuf.StringValue - 1, // 15: com.coralogixapis.actions.v2.CreateActionResponse.action:type_name -> com.coralogixapis.actions.v2.Action - 1, // 16: com.coralogixapis.actions.v2.ReplaceActionRequest.action:type_name -> com.coralogixapis.actions.v2.Action - 1, // 17: com.coralogixapis.actions.v2.ReplaceActionResponse.action:type_name -> com.coralogixapis.actions.v2.Action - 16, // 18: com.coralogixapis.actions.v2.DeleteActionRequest.id:type_name -> google.protobuf.StringValue - 16, // 19: com.coralogixapis.actions.v2.GetActionRequest.id:type_name -> google.protobuf.StringValue - 1, // 20: com.coralogixapis.actions.v2.GetActionResponse.action:type_name -> com.coralogixapis.actions.v2.Action - 1, // 21: com.coralogixapis.actions.v2.ListActionsResponse.actions:type_name -> com.coralogixapis.actions.v2.Action - 14, // 22: com.coralogixapis.actions.v2.OrderActionsRequest.private_actions_order:type_name -> com.coralogixapis.actions.v2.OrderActionsRequest.PrivateActionsOrderEntry - 15, // 23: com.coralogixapis.actions.v2.OrderActionsRequest.shared_actions_order:type_name -> com.coralogixapis.actions.v2.OrderActionsRequest.SharedActionsOrderEntry - 18, // 24: com.coralogixapis.actions.v2.OrderActionsRequest.PrivateActionsOrderEntry.value:type_name -> google.protobuf.UInt32Value - 18, // 25: com.coralogixapis.actions.v2.OrderActionsRequest.SharedActionsOrderEntry.value:type_name -> google.protobuf.UInt32Value - 2, // 26: com.coralogixapis.actions.v2.ActionsService.CreateAction:input_type -> com.coralogixapis.actions.v2.CreateActionRequest - 4, // 27: com.coralogixapis.actions.v2.ActionsService.ReplaceAction:input_type -> com.coralogixapis.actions.v2.ReplaceActionRequest - 6, // 28: com.coralogixapis.actions.v2.ActionsService.DeleteAction:input_type -> com.coralogixapis.actions.v2.DeleteActionRequest - 8, // 29: com.coralogixapis.actions.v2.ActionsService.GetAction:input_type -> com.coralogixapis.actions.v2.GetActionRequest - 10, // 30: com.coralogixapis.actions.v2.ActionsService.ListActions:input_type -> com.coralogixapis.actions.v2.ListActionsRequest - 12, // 31: com.coralogixapis.actions.v2.ActionsService.OrderActions:input_type -> com.coralogixapis.actions.v2.OrderActionsRequest - 3, // 32: com.coralogixapis.actions.v2.ActionsService.CreateAction:output_type -> com.coralogixapis.actions.v2.CreateActionResponse - 5, // 33: com.coralogixapis.actions.v2.ActionsService.ReplaceAction:output_type -> com.coralogixapis.actions.v2.ReplaceActionResponse - 7, // 34: com.coralogixapis.actions.v2.ActionsService.DeleteAction:output_type -> com.coralogixapis.actions.v2.DeleteActionResponse - 9, // 35: com.coralogixapis.actions.v2.ActionsService.GetAction:output_type -> com.coralogixapis.actions.v2.GetActionResponse - 11, // 36: com.coralogixapis.actions.v2.ActionsService.ListActions:output_type -> com.coralogixapis.actions.v2.ListActionsResponse - 13, // 37: com.coralogixapis.actions.v2.ActionsService.OrderActions:output_type -> com.coralogixapis.actions.v2.OrderActionsResponse - 32, // [32:38] is the sub-list for method output_type - 26, // [26:32] is the sub-list for method input_type - 26, // [26:26] is the sub-list for extension type_name - 26, // [26:26] is the sub-list for extension extendee - 0, // [0:26] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_actions_v2_actions_service_proto_init() } -func file_com_coralogixapis_actions_v2_actions_service_proto_init() { - if File_com_coralogixapis_actions_v2_actions_service_proto != nil { - return - } - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Action); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateActionRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateActionResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ReplaceActionRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ReplaceActionResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteActionRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteActionResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetActionRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetActionResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListActionsRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListActionsResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*OrderActionsRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*OrderActionsResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_actions_v2_actions_service_proto_rawDesc, - NumEnums: 1, - NumMessages: 15, - NumExtensions: 0, - NumServices: 1, - }, - GoTypes: file_com_coralogixapis_actions_v2_actions_service_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_actions_v2_actions_service_proto_depIdxs, - EnumInfos: file_com_coralogixapis_actions_v2_actions_service_proto_enumTypes, - MessageInfos: file_com_coralogixapis_actions_v2_actions_service_proto_msgTypes, - }.Build() - File_com_coralogixapis_actions_v2_actions_service_proto = out.File - file_com_coralogixapis_actions_v2_actions_service_proto_rawDesc = nil - file_com_coralogixapis_actions_v2_actions_service_proto_goTypes = nil - file_com_coralogixapis_actions_v2_actions_service_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/actions/v2/actions_service_grpc.pb.go b/controllers/clientset/grpc/actions/v2/actions_service_grpc.pb.go deleted file mode 100644 index faa3d4b..0000000 --- a/controllers/clientset/grpc/actions/v2/actions_service_grpc.pb.go +++ /dev/null @@ -1,338 +0,0 @@ -// Code generated by protoc-gen-go-grpc. DO NOT EDIT. -// versions: -// - protoc-gen-go-grpc v1.2.0 -// - protoc v3.21.8 -// source: com/coralogixapis/actions/v2/actions_service.proto - -package __ - -import ( - context "context" - - grpc "google.golang.org/grpc" - codes "google.golang.org/grpc/codes" - status "google.golang.org/grpc/status" -) - -// This is a compile-time assertion to ensure that this generated file -// is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 - -// ActionsServiceClient is the client API for ActionsService service. -// -// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. -type ActionsServiceClient interface { - // google.protobuf.http( - //path: "v2/actions/actions" - //method: "POST" - //body: "action" - //) - CreateAction(ctx context.Context, in *CreateActionRequest, opts ...grpc.CallOption) (*CreateActionResponse, error) - // google.protobuf.http( - //path: "v2/actions/actions" - //method: "PUT" - //body: "action" - //) - ReplaceAction(ctx context.Context, in *ReplaceActionRequest, opts ...grpc.CallOption) (*ReplaceActionResponse, error) - // google.protobuf.http( - //path: "v2/actions/actions/" - //method: "DELETE" - //) - DeleteAction(ctx context.Context, in *DeleteActionRequest, opts ...grpc.CallOption) (*DeleteActionResponse, error) - // google.protobuf.http( - //path: "v2/actions/actions/" - //method: "GET" - //) - GetAction(ctx context.Context, in *GetActionRequest, opts ...grpc.CallOption) (*GetActionResponse, error) - // google.protobuf.http( - //path: "v2/actions/actions" - //method: "GET" - //) - ListActions(ctx context.Context, in *ListActionsRequest, opts ...grpc.CallOption) (*ListActionsResponse, error) - // google.protobuf.http( - //path: "v2/actions/actions:order" - //method: "Post" - //) - OrderActions(ctx context.Context, in *OrderActionsRequest, opts ...grpc.CallOption) (*OrderActionsResponse, error) -} - -type actionsServiceClient struct { - cc grpc.ClientConnInterface -} - -func NewActionsServiceClient(cc grpc.ClientConnInterface) ActionsServiceClient { - return &actionsServiceClient{cc} -} - -func (c *actionsServiceClient) CreateAction(ctx context.Context, in *CreateActionRequest, opts ...grpc.CallOption) (*CreateActionResponse, error) { - out := new(CreateActionResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.actions.v2.ActionsService/CreateAction", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *actionsServiceClient) ReplaceAction(ctx context.Context, in *ReplaceActionRequest, opts ...grpc.CallOption) (*ReplaceActionResponse, error) { - out := new(ReplaceActionResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.actions.v2.ActionsService/ReplaceAction", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *actionsServiceClient) DeleteAction(ctx context.Context, in *DeleteActionRequest, opts ...grpc.CallOption) (*DeleteActionResponse, error) { - out := new(DeleteActionResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.actions.v2.ActionsService/DeleteAction", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *actionsServiceClient) GetAction(ctx context.Context, in *GetActionRequest, opts ...grpc.CallOption) (*GetActionResponse, error) { - out := new(GetActionResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.actions.v2.ActionsService/GetAction", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *actionsServiceClient) ListActions(ctx context.Context, in *ListActionsRequest, opts ...grpc.CallOption) (*ListActionsResponse, error) { - out := new(ListActionsResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.actions.v2.ActionsService/ListActions", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *actionsServiceClient) OrderActions(ctx context.Context, in *OrderActionsRequest, opts ...grpc.CallOption) (*OrderActionsResponse, error) { - out := new(OrderActionsResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.actions.v2.ActionsService/OrderActions", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -// ActionsServiceServer is the server API for ActionsService service. -// All implementations must embed UnimplementedActionsServiceServer -// for forward compatibility -type ActionsServiceServer interface { - // google.protobuf.http( - //path: "v2/actions/actions" - //method: "POST" - //body: "action" - //) - CreateAction(context.Context, *CreateActionRequest) (*CreateActionResponse, error) - // google.protobuf.http( - //path: "v2/actions/actions" - //method: "PUT" - //body: "action" - //) - ReplaceAction(context.Context, *ReplaceActionRequest) (*ReplaceActionResponse, error) - // google.protobuf.http( - //path: "v2/actions/actions/" - //method: "DELETE" - //) - DeleteAction(context.Context, *DeleteActionRequest) (*DeleteActionResponse, error) - // google.protobuf.http( - //path: "v2/actions/actions/" - //method: "GET" - //) - GetAction(context.Context, *GetActionRequest) (*GetActionResponse, error) - // google.protobuf.http( - //path: "v2/actions/actions" - //method: "GET" - //) - ListActions(context.Context, *ListActionsRequest) (*ListActionsResponse, error) - // google.protobuf.http( - //path: "v2/actions/actions:order" - //method: "Post" - //) - OrderActions(context.Context, *OrderActionsRequest) (*OrderActionsResponse, error) - mustEmbedUnimplementedActionsServiceServer() -} - -// UnimplementedActionsServiceServer must be embedded to have forward compatible implementations. -type UnimplementedActionsServiceServer struct { -} - -func (UnimplementedActionsServiceServer) CreateAction(context.Context, *CreateActionRequest) (*CreateActionResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method CreateAction not implemented") -} -func (UnimplementedActionsServiceServer) ReplaceAction(context.Context, *ReplaceActionRequest) (*ReplaceActionResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method ReplaceAction not implemented") -} -func (UnimplementedActionsServiceServer) DeleteAction(context.Context, *DeleteActionRequest) (*DeleteActionResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method DeleteAction not implemented") -} -func (UnimplementedActionsServiceServer) GetAction(context.Context, *GetActionRequest) (*GetActionResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method GetAction not implemented") -} -func (UnimplementedActionsServiceServer) ListActions(context.Context, *ListActionsRequest) (*ListActionsResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method ListActions not implemented") -} -func (UnimplementedActionsServiceServer) OrderActions(context.Context, *OrderActionsRequest) (*OrderActionsResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method OrderActions not implemented") -} -func (UnimplementedActionsServiceServer) mustEmbedUnimplementedActionsServiceServer() {} - -// UnsafeActionsServiceServer may be embedded to opt out of forward compatibility for this service. -// Use of this interface is not recommended, as added methods to ActionsServiceServer will -// result in compilation errors. -type UnsafeActionsServiceServer interface { - mustEmbedUnimplementedActionsServiceServer() -} - -func RegisterActionsServiceServer(s grpc.ServiceRegistrar, srv ActionsServiceServer) { - s.RegisterService(&ActionsService_ServiceDesc, srv) -} - -func _ActionsService_CreateAction_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(CreateActionRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(ActionsServiceServer).CreateAction(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.actions.v2.ActionsService/CreateAction", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(ActionsServiceServer).CreateAction(ctx, req.(*CreateActionRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _ActionsService_ReplaceAction_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(ReplaceActionRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(ActionsServiceServer).ReplaceAction(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.actions.v2.ActionsService/ReplaceAction", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(ActionsServiceServer).ReplaceAction(ctx, req.(*ReplaceActionRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _ActionsService_DeleteAction_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(DeleteActionRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(ActionsServiceServer).DeleteAction(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.actions.v2.ActionsService/DeleteAction", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(ActionsServiceServer).DeleteAction(ctx, req.(*DeleteActionRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _ActionsService_GetAction_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(GetActionRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(ActionsServiceServer).GetAction(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.actions.v2.ActionsService/GetAction", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(ActionsServiceServer).GetAction(ctx, req.(*GetActionRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _ActionsService_ListActions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(ListActionsRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(ActionsServiceServer).ListActions(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.actions.v2.ActionsService/ListActions", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(ActionsServiceServer).ListActions(ctx, req.(*ListActionsRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _ActionsService_OrderActions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(OrderActionsRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(ActionsServiceServer).OrderActions(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.actions.v2.ActionsService/OrderActions", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(ActionsServiceServer).OrderActions(ctx, req.(*OrderActionsRequest)) - } - return interceptor(ctx, in, info, handler) -} - -// ActionsService_ServiceDesc is the grpc.ServiceDesc for ActionsService service. -// It's only intended for direct use with grpc.RegisterService, -// and not to be introspected or modified (even as a copy) -var ActionsService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "com.coralogixapis.actions.v2.ActionsService", - HandlerType: (*ActionsServiceServer)(nil), - Methods: []grpc.MethodDesc{ - { - MethodName: "CreateAction", - Handler: _ActionsService_CreateAction_Handler, - }, - { - MethodName: "ReplaceAction", - Handler: _ActionsService_ReplaceAction_Handler, - }, - { - MethodName: "DeleteAction", - Handler: _ActionsService_DeleteAction_Handler, - }, - { - MethodName: "GetAction", - Handler: _ActionsService_GetAction_Handler, - }, - { - MethodName: "ListActions", - Handler: _ActionsService_ListActions_Handler, - }, - { - MethodName: "OrderActions", - Handler: _ActionsService_OrderActions_Handler, - }, - }, - Streams: []grpc.StreamDesc{}, - Metadata: "com/coralogixapis/actions/v2/actions_service.proto", -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/audit_log.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/audit_log.pb.go deleted file mode 100644 index 5677d4e..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/audit_log.pb.go +++ /dev/null @@ -1,182 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/audit_log.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - descriptorpb "google.golang.org/protobuf/types/descriptorpb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type AuditLogDescription struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Description *string `protobuf:"bytes,1,opt,name=description,proto3,oneof" json:"description,omitempty"` -} - -func (x *AuditLogDescription) Reset() { - *x = AuditLogDescription{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_audit_log_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *AuditLogDescription) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*AuditLogDescription) ProtoMessage() {} - -func (x *AuditLogDescription) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_audit_log_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use AuditLogDescription.ProtoReflect.Descriptor instead. -func (*AuditLogDescription) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_audit_log_proto_rawDescGZIP(), []int{0} -} - -func (x *AuditLogDescription) GetDescription() string { - if x != nil && x.Description != nil { - return *x.Description - } - return "" -} - -var file_com_coralogixapis_dashboards_v1_audit_log_proto_extTypes = []protoimpl.ExtensionInfo{ - { - ExtendedType: (*descriptorpb.MethodOptions)(nil), - ExtensionType: (*AuditLogDescription)(nil), - Field: 4999, - Name: "com.coralogixapis.dashboards.v1.audit_log_description", - Tag: "bytes,4999,opt,name=audit_log_description", - Filename: "com/coralogixapis/dashboards/v1/audit_log.proto", - }, -} - -// Extension fields to descriptorpb.MethodOptions. -var ( - // optional com.coralogixapis.dashboards.v1.AuditLogDescription audit_log_description = 4999; - E_AuditLogDescription = &file_com_coralogixapis_dashboards_v1_audit_log_proto_extTypes[0] -) - -var File_com_coralogixapis_dashboards_v1_audit_log_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_audit_log_proto_rawDesc = []byte{ - 0x0a, 0x2f, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x12, 0x1f, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, - 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, - 0x76, 0x31, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x4c, 0x0a, 0x13, 0x41, 0x75, 0x64, 0x69, 0x74, 0x4c, 0x6f, 0x67, - 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0b, 0x64, - 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x48, 0x00, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x88, - 0x01, 0x01, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, - 0x6f, 0x6e, 0x3a, 0x8c, 0x01, 0x0a, 0x15, 0x61, 0x75, 0x64, 0x69, 0x74, 0x5f, 0x6c, 0x6f, 0x67, - 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x2e, 0x67, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x4d, - 0x65, 0x74, 0x68, 0x6f, 0x64, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x87, 0x27, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, - 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x74, 0x4c, 0x6f, 0x67, 0x44, 0x65, - 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x61, 0x75, 0x64, 0x69, 0x74, - 0x4c, 0x6f, 0x67, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, - 0x01, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_audit_log_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_audit_log_proto_rawDescData = file_com_coralogixapis_dashboards_v1_audit_log_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_audit_log_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_audit_log_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_audit_log_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_audit_log_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_audit_log_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_audit_log_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_com_coralogixapis_dashboards_v1_audit_log_proto_goTypes = []interface{}{ - (*AuditLogDescription)(nil), // 0: com.coralogixapis.dashboards.v1.AuditLogDescription - (*descriptorpb.MethodOptions)(nil), // 1: google.protobuf.MethodOptions -} -var file_com_coralogixapis_dashboards_v1_audit_log_proto_depIdxs = []int32{ - 1, // 0: com.coralogixapis.dashboards.v1.audit_log_description:extendee -> google.protobuf.MethodOptions - 0, // 1: com.coralogixapis.dashboards.v1.audit_log_description:type_name -> com.coralogixapis.dashboards.v1.AuditLogDescription - 2, // [2:2] is the sub-list for method output_type - 2, // [2:2] is the sub-list for method input_type - 1, // [1:2] is the sub-list for extension type_name - 0, // [0:1] is the sub-list for extension extendee - 0, // [0:0] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_audit_log_proto_init() } -func file_com_coralogixapis_dashboards_v1_audit_log_proto_init() { - if File_com_coralogixapis_dashboards_v1_audit_log_proto != nil { - return - } - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_audit_log_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AuditLogDescription); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - file_com_coralogixapis_dashboards_v1_audit_log_proto_msgTypes[0].OneofWrappers = []interface{}{} - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_audit_log_proto_rawDesc, - NumEnums: 0, - NumMessages: 1, - NumExtensions: 1, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_audit_log_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_audit_log_proto_depIdxs, - MessageInfos: file_com_coralogixapis_dashboards_v1_audit_log_proto_msgTypes, - ExtensionInfos: file_com_coralogixapis_dashboards_v1_audit_log_proto_extTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_audit_log_proto = out.File - file_com_coralogixapis_dashboards_v1_audit_log_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_audit_log_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_audit_log_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/dashboard.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/dashboard.pb.go deleted file mode 100644 index aafdd18..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/dashboard.pb.go +++ /dev/null @@ -1,221 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/ast/dashboard.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type Dashboard struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Id *UUID `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` - Name *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` - Description *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` - Layout *Layout `protobuf:"bytes,4,opt,name=layout,proto3" json:"layout,omitempty"` - Variables []*Variable `protobuf:"bytes,5,rep,name=variables,proto3" json:"variables,omitempty"` -} - -func (x *Dashboard) Reset() { - *x = Dashboard{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *Dashboard) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*Dashboard) ProtoMessage() {} - -func (x *Dashboard) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use Dashboard.ProtoReflect.Descriptor instead. -func (*Dashboard) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_rawDescGZIP(), []int{0} -} - -func (x *Dashboard) GetId() *UUID { - if x != nil { - return x.Id - } - return nil -} - -func (x *Dashboard) GetName() *wrapperspb.StringValue { - if x != nil { - return x.Name - } - return nil -} - -func (x *Dashboard) GetDescription() *wrapperspb.StringValue { - if x != nil { - return x.Description - } - return nil -} - -func (x *Dashboard) GetLayout() *Layout { - if x != nil { - return x.Layout - } - return nil -} - -func (x *Dashboard) GetVariables() []*Variable { - if x != nil { - return x.Variables - } - return nil -} - -var File_com_coralogixapis_dashboards_v1_ast_dashboard_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_rawDesc = []byte{ - 0x0a, 0x33, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x61, 0x73, 0x74, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x1a, 0x30, 0x63, 0x6f, 0x6d, 0x2f, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, - 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x73, 0x74, 0x2f, - 0x6c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x32, 0x63, 0x6f, - 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, - 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x73, - 0x74, 0x2f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x1a, 0x2b, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x67, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, - 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xc6, 0x02, - 0x0a, 0x09, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x12, 0x35, 0x0a, 0x02, 0x69, - 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, - 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x55, 0x49, 0x44, 0x52, 0x02, - 0x69, 0x64, 0x12, 0x30, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x04, - 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x3e, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, - 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, - 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, - 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x43, 0x0a, 0x06, 0x6c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x18, 0x04, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x4c, 0x61, 0x79, 0x6f, 0x75, - 0x74, 0x52, 0x06, 0x6c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x12, 0x4b, 0x0a, 0x09, 0x76, 0x61, 0x72, - 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x63, - 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, - 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, - 0x73, 0x74, 0x2e, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x09, 0x76, 0x61, 0x72, - 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_rawDescData = file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_goTypes = []interface{}{ - (*Dashboard)(nil), // 0: com.coralogixapis.dashboards.v1.ast.Dashboard - (*UUID)(nil), // 1: com.coralogixapis.dashboards.v1.UUID - (*wrapperspb.StringValue)(nil), // 2: google.protobuf.StringValue - (*Layout)(nil), // 3: com.coralogixapis.dashboards.v1.ast.Layout - (*Variable)(nil), // 4: com.coralogixapis.dashboards.v1.ast.Variable -} -var file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_depIdxs = []int32{ - 1, // 0: com.coralogixapis.dashboards.v1.ast.Dashboard.id:type_name -> com.coralogixapis.dashboards.v1.UUID - 2, // 1: com.coralogixapis.dashboards.v1.ast.Dashboard.name:type_name -> google.protobuf.StringValue - 2, // 2: com.coralogixapis.dashboards.v1.ast.Dashboard.description:type_name -> google.protobuf.StringValue - 3, // 3: com.coralogixapis.dashboards.v1.ast.Dashboard.layout:type_name -> com.coralogixapis.dashboards.v1.ast.Layout - 4, // 4: com.coralogixapis.dashboards.v1.ast.Dashboard.variables:type_name -> com.coralogixapis.dashboards.v1.ast.Variable - 5, // [5:5] is the sub-list for method output_type - 5, // [5:5] is the sub-list for method input_type - 5, // [5:5] is the sub-list for extension type_name - 5, // [5:5] is the sub-list for extension extendee - 0, // [0:5] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_init() } -func file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_init() { - if File_com_coralogixapis_dashboards_v1_ast_dashboard_proto != nil { - return - } - file_com_coralogixapis_dashboards_v1_ast_layout_proto_init() - file_com_coralogixapis_dashboards_v1_ast_variable_proto_init() - file_com_coralogixapis_dashboards_v1_types_proto_init() - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Dashboard); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_rawDesc, - NumEnums: 0, - NumMessages: 1, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_depIdxs, - MessageInfos: file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_ast_dashboard_proto = out.File - file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/dashboard_catalog_service.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/dashboard_catalog_service.pb.go deleted file mode 100644 index e76f5fa..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/dashboard_catalog_service.pb.go +++ /dev/null @@ -1,823 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/services/dashboard_catalog_service.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - timestamppb "google.golang.org/protobuf/types/known/timestamppb" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type GetDashboardCatalogRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *GetDashboardCatalogRequest) Reset() { - *x = GetDashboardCatalogRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetDashboardCatalogRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetDashboardCatalogRequest) ProtoMessage() {} - -func (x *GetDashboardCatalogRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GetDashboardCatalogRequest.ProtoReflect.Descriptor instead. -func (*GetDashboardCatalogRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDescGZIP(), []int{0} -} - -type GetDashboardCatalogResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - DefaultDashboard *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=default_dashboard,json=defaultDashboard,proto3" json:"default_dashboard,omitempty"` - PinnedDashboards []*wrapperspb.StringValue `protobuf:"bytes,2,rep,name=pinned_dashboards,json=pinnedDashboards,proto3" json:"pinned_dashboards,omitempty"` - Items []*DashboardCatalogItem `protobuf:"bytes,3,rep,name=items,proto3" json:"items,omitempty"` -} - -func (x *GetDashboardCatalogResponse) Reset() { - *x = GetDashboardCatalogResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetDashboardCatalogResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetDashboardCatalogResponse) ProtoMessage() {} - -func (x *GetDashboardCatalogResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GetDashboardCatalogResponse.ProtoReflect.Descriptor instead. -func (*GetDashboardCatalogResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDescGZIP(), []int{1} -} - -func (x *GetDashboardCatalogResponse) GetDefaultDashboard() *wrapperspb.StringValue { - if x != nil { - return x.DefaultDashboard - } - return nil -} - -func (x *GetDashboardCatalogResponse) GetPinnedDashboards() []*wrapperspb.StringValue { - if x != nil { - return x.PinnedDashboards - } - return nil -} - -func (x *GetDashboardCatalogResponse) GetItems() []*DashboardCatalogItem { - if x != nil { - return x.Items - } - return nil -} - -type DashboardCatalogItem struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Id *UUID `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` - Name *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` - Description *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` - CreateTime *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"` - UpdateTime *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"` -} - -func (x *DashboardCatalogItem) Reset() { - *x = DashboardCatalogItem{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[2] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *DashboardCatalogItem) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*DashboardCatalogItem) ProtoMessage() {} - -func (x *DashboardCatalogItem) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[2] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use DashboardCatalogItem.ProtoReflect.Descriptor instead. -func (*DashboardCatalogItem) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDescGZIP(), []int{2} -} - -func (x *DashboardCatalogItem) GetId() *UUID { - if x != nil { - return x.Id - } - return nil -} - -func (x *DashboardCatalogItem) GetName() *wrapperspb.StringValue { - if x != nil { - return x.Name - } - return nil -} - -func (x *DashboardCatalogItem) GetDescription() *wrapperspb.StringValue { - if x != nil { - return x.Description - } - return nil -} - -func (x *DashboardCatalogItem) GetCreateTime() *timestamppb.Timestamp { - if x != nil { - return x.CreateTime - } - return nil -} - -func (x *DashboardCatalogItem) GetUpdateTime() *timestamppb.Timestamp { - if x != nil { - return x.UpdateTime - } - return nil -} - -type ReplaceDefaultDashboardRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - RequestId *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"` - DashboardId *UUID `protobuf:"bytes,2,opt,name=dashboard_id,json=dashboardId,proto3" json:"dashboard_id,omitempty"` -} - -func (x *ReplaceDefaultDashboardRequest) Reset() { - *x = ReplaceDefaultDashboardRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[3] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ReplaceDefaultDashboardRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ReplaceDefaultDashboardRequest) ProtoMessage() {} - -func (x *ReplaceDefaultDashboardRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[3] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ReplaceDefaultDashboardRequest.ProtoReflect.Descriptor instead. -func (*ReplaceDefaultDashboardRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDescGZIP(), []int{3} -} - -func (x *ReplaceDefaultDashboardRequest) GetRequestId() *wrapperspb.StringValue { - if x != nil { - return x.RequestId - } - return nil -} - -func (x *ReplaceDefaultDashboardRequest) GetDashboardId() *UUID { - if x != nil { - return x.DashboardId - } - return nil -} - -type ReplaceDefaultDashboardResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *ReplaceDefaultDashboardResponse) Reset() { - *x = ReplaceDefaultDashboardResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[4] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ReplaceDefaultDashboardResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ReplaceDefaultDashboardResponse) ProtoMessage() {} - -func (x *ReplaceDefaultDashboardResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[4] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ReplaceDefaultDashboardResponse.ProtoReflect.Descriptor instead. -func (*ReplaceDefaultDashboardResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDescGZIP(), []int{4} -} - -type PinDashboardRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - RequestId *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"` - DashboardId *UUID `protobuf:"bytes,2,opt,name=dashboard_id,json=dashboardId,proto3" json:"dashboard_id,omitempty"` -} - -func (x *PinDashboardRequest) Reset() { - *x = PinDashboardRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[5] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *PinDashboardRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*PinDashboardRequest) ProtoMessage() {} - -func (x *PinDashboardRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[5] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use PinDashboardRequest.ProtoReflect.Descriptor instead. -func (*PinDashboardRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDescGZIP(), []int{5} -} - -func (x *PinDashboardRequest) GetRequestId() *wrapperspb.StringValue { - if x != nil { - return x.RequestId - } - return nil -} - -func (x *PinDashboardRequest) GetDashboardId() *UUID { - if x != nil { - return x.DashboardId - } - return nil -} - -type PinDashboardResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *PinDashboardResponse) Reset() { - *x = PinDashboardResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[6] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *PinDashboardResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*PinDashboardResponse) ProtoMessage() {} - -func (x *PinDashboardResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[6] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use PinDashboardResponse.ProtoReflect.Descriptor instead. -func (*PinDashboardResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDescGZIP(), []int{6} -} - -type UnpinDashboardRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - RequestId *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"` - DashboardId *UUID `protobuf:"bytes,2,opt,name=dashboard_id,json=dashboardId,proto3" json:"dashboard_id,omitempty"` -} - -func (x *UnpinDashboardRequest) Reset() { - *x = UnpinDashboardRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[7] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *UnpinDashboardRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*UnpinDashboardRequest) ProtoMessage() {} - -func (x *UnpinDashboardRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[7] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use UnpinDashboardRequest.ProtoReflect.Descriptor instead. -func (*UnpinDashboardRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDescGZIP(), []int{7} -} - -func (x *UnpinDashboardRequest) GetRequestId() *wrapperspb.StringValue { - if x != nil { - return x.RequestId - } - return nil -} - -func (x *UnpinDashboardRequest) GetDashboardId() *UUID { - if x != nil { - return x.DashboardId - } - return nil -} - -type UnpinDashboardResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *UnpinDashboardResponse) Reset() { - *x = UnpinDashboardResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[8] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *UnpinDashboardResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*UnpinDashboardResponse) ProtoMessage() {} - -func (x *UnpinDashboardResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[8] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use UnpinDashboardResponse.ProtoReflect.Descriptor instead. -func (*UnpinDashboardResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDescGZIP(), []int{8} -} - -var File_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDesc = []byte{ - 0x0a, 0x48, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, - 0x6f, 0x61, 0x72, 0x64, 0x5f, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x28, 0x63, 0x6f, 0x6d, 0x2e, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, - 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x1a, 0x2f, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, - 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2b, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x22, 0x1c, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, - 0x61, 0x72, 0x64, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x22, 0x89, 0x02, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x12, 0x49, 0x0a, 0x11, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x64, 0x61, 0x73, - 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, - 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x10, 0x64, 0x65, 0x66, 0x61, - 0x75, 0x6c, 0x74, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x12, 0x49, 0x0a, 0x11, - 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, - 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x10, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x44, 0x61, 0x73, - 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x12, 0x54, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, - 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3e, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, - 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, - 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2e, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x43, 0x61, 0x74, 0x61, 0x6c, - 0x6f, 0x67, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x22, 0xb9, 0x02, - 0x0a, 0x14, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x43, 0x61, 0x74, 0x61, 0x6c, - 0x6f, 0x67, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x35, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x55, 0x49, 0x44, 0x52, 0x02, 0x69, 0x64, 0x12, 0x30, 0x0a, - 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, - 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, - 0x3e, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, - 0x75, 0x65, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, - 0x3b, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, - 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x3b, 0x0a, 0x0b, - 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x75, - 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xa7, 0x01, 0x0a, 0x1e, 0x52, 0x65, - 0x70, 0x6c, 0x61, 0x63, 0x65, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x44, 0x61, 0x73, 0x68, - 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3b, 0x0a, 0x0a, - 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x09, - 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x12, 0x48, 0x0a, 0x0c, 0x64, 0x61, 0x73, - 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, - 0x31, 0x2e, 0x55, 0x55, 0x49, 0x44, 0x52, 0x0b, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, - 0x64, 0x49, 0x64, 0x22, 0x21, 0x0a, 0x1f, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x44, 0x65, - 0x66, 0x61, 0x75, 0x6c, 0x74, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x9c, 0x01, 0x0a, 0x13, 0x50, 0x69, 0x6e, 0x44, 0x61, - 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3b, - 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, - 0x52, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x12, 0x48, 0x0a, 0x0c, 0x64, - 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, - 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, - 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x55, 0x49, 0x44, 0x52, 0x0b, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, - 0x61, 0x72, 0x64, 0x49, 0x64, 0x22, 0x16, 0x0a, 0x14, 0x50, 0x69, 0x6e, 0x44, 0x61, 0x73, 0x68, - 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x9e, 0x01, - 0x0a, 0x15, 0x55, 0x6e, 0x70, 0x69, 0x6e, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3b, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, - 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x49, 0x64, 0x12, 0x48, 0x0a, 0x0c, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, - 0x64, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x63, 0x6f, 0x6d, - 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, - 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x55, 0x49, - 0x44, 0x52, 0x0b, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x49, 0x64, 0x22, 0x18, - 0x0a, 0x16, 0x55, 0x6e, 0x70, 0x69, 0x6e, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x32, 0xff, 0x05, 0x0a, 0x17, 0x44, 0x61, 0x73, - 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x53, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x12, 0xbf, 0x01, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x44, 0x61, 0x73, 0x68, - 0x62, 0x6f, 0x61, 0x72, 0x64, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x12, 0x44, 0x2e, 0x63, - 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, - 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x74, 0x44, 0x61, 0x73, 0x68, 0x62, - 0x6f, 0x61, 0x72, 0x64, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x1a, 0x45, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, - 0x74, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, - 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1b, 0xba, 0xb8, 0x02, 0x17, 0x0a, - 0x15, 0x67, 0x65, 0x74, 0x20, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x20, 0x63, - 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x12, 0xcf, 0x01, 0x0a, 0x17, 0x52, 0x65, 0x70, 0x6c, 0x61, - 0x63, 0x65, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x12, 0x48, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, - 0x70, 0x6c, 0x61, 0x63, 0x65, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x44, 0x61, 0x73, 0x68, - 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x49, 0x2e, 0x63, - 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, - 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x44, - 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1f, 0xba, 0xb8, 0x02, 0x1b, 0x0a, 0x19, 0x72, - 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x20, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x20, 0x64, - 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x12, 0xa2, 0x01, 0x0a, 0x0c, 0x50, 0x69, 0x6e, - 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x12, 0x3d, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, - 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x69, 0x6e, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, - 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, - 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, - 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2e, 0x50, 0x69, 0x6e, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x13, 0xba, 0xb8, 0x02, 0x0f, 0x0a, 0x0d, - 0x70, 0x69, 0x6e, 0x20, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x12, 0xaa, 0x01, - 0x0a, 0x0e, 0x55, 0x6e, 0x70, 0x69, 0x6e, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x12, 0x3f, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, - 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, - 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x6e, 0x70, 0x69, - 0x6e, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x1a, 0x40, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, - 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, - 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x6e, 0x70, - 0x69, 0x6e, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x22, 0x15, 0xba, 0xb8, 0x02, 0x11, 0x0a, 0x0f, 0x75, 0x6e, 0x70, 0x69, 0x6e, - 0x20, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, - 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDescData = file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes = make([]protoimpl.MessageInfo, 9) -var file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_goTypes = []interface{}{ - (*GetDashboardCatalogRequest)(nil), // 0: com.coralogixapis.dashboards.v1.services.GetDashboardCatalogRequest - (*GetDashboardCatalogResponse)(nil), // 1: com.coralogixapis.dashboards.v1.services.GetDashboardCatalogResponse - (*DashboardCatalogItem)(nil), // 2: com.coralogixapis.dashboards.v1.services.DashboardCatalogItem - (*ReplaceDefaultDashboardRequest)(nil), // 3: com.coralogixapis.dashboards.v1.services.ReplaceDefaultDashboardRequest - (*ReplaceDefaultDashboardResponse)(nil), // 4: com.coralogixapis.dashboards.v1.services.ReplaceDefaultDashboardResponse - (*PinDashboardRequest)(nil), // 5: com.coralogixapis.dashboards.v1.services.PinDashboardRequest - (*PinDashboardResponse)(nil), // 6: com.coralogixapis.dashboards.v1.services.PinDashboardResponse - (*UnpinDashboardRequest)(nil), // 7: com.coralogixapis.dashboards.v1.services.UnpinDashboardRequest - (*UnpinDashboardResponse)(nil), // 8: com.coralogixapis.dashboards.v1.services.UnpinDashboardResponse - (*wrapperspb.StringValue)(nil), // 9: google.protobuf.StringValue - (*UUID)(nil), // 10: com.coralogixapis.dashboards.v1.UUID - (*timestamppb.Timestamp)(nil), // 11: google.protobuf.Timestamp -} -var file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_depIdxs = []int32{ - 9, // 0: com.coralogixapis.dashboards.v1.services.GetDashboardCatalogResponse.default_dashboard:type_name -> google.protobuf.StringValue - 9, // 1: com.coralogixapis.dashboards.v1.services.GetDashboardCatalogResponse.pinned_dashboards:type_name -> google.protobuf.StringValue - 2, // 2: com.coralogixapis.dashboards.v1.services.GetDashboardCatalogResponse.items:type_name -> com.coralogixapis.dashboards.v1.services.DashboardCatalogItem - 10, // 3: com.coralogixapis.dashboards.v1.services.DashboardCatalogItem.id:type_name -> com.coralogixapis.dashboards.v1.UUID - 9, // 4: com.coralogixapis.dashboards.v1.services.DashboardCatalogItem.name:type_name -> google.protobuf.StringValue - 9, // 5: com.coralogixapis.dashboards.v1.services.DashboardCatalogItem.description:type_name -> google.protobuf.StringValue - 11, // 6: com.coralogixapis.dashboards.v1.services.DashboardCatalogItem.create_time:type_name -> google.protobuf.Timestamp - 11, // 7: com.coralogixapis.dashboards.v1.services.DashboardCatalogItem.update_time:type_name -> google.protobuf.Timestamp - 9, // 8: com.coralogixapis.dashboards.v1.services.ReplaceDefaultDashboardRequest.request_id:type_name -> google.protobuf.StringValue - 10, // 9: com.coralogixapis.dashboards.v1.services.ReplaceDefaultDashboardRequest.dashboard_id:type_name -> com.coralogixapis.dashboards.v1.UUID - 9, // 10: com.coralogixapis.dashboards.v1.services.PinDashboardRequest.request_id:type_name -> google.protobuf.StringValue - 10, // 11: com.coralogixapis.dashboards.v1.services.PinDashboardRequest.dashboard_id:type_name -> com.coralogixapis.dashboards.v1.UUID - 9, // 12: com.coralogixapis.dashboards.v1.services.UnpinDashboardRequest.request_id:type_name -> google.protobuf.StringValue - 10, // 13: com.coralogixapis.dashboards.v1.services.UnpinDashboardRequest.dashboard_id:type_name -> com.coralogixapis.dashboards.v1.UUID - 0, // 14: com.coralogixapis.dashboards.v1.services.DashboardCatalogService.GetDashboardCatalog:input_type -> com.coralogixapis.dashboards.v1.services.GetDashboardCatalogRequest - 3, // 15: com.coralogixapis.dashboards.v1.services.DashboardCatalogService.ReplaceDefaultDashboard:input_type -> com.coralogixapis.dashboards.v1.services.ReplaceDefaultDashboardRequest - 5, // 16: com.coralogixapis.dashboards.v1.services.DashboardCatalogService.PinDashboard:input_type -> com.coralogixapis.dashboards.v1.services.PinDashboardRequest - 7, // 17: com.coralogixapis.dashboards.v1.services.DashboardCatalogService.UnpinDashboard:input_type -> com.coralogixapis.dashboards.v1.services.UnpinDashboardRequest - 1, // 18: com.coralogixapis.dashboards.v1.services.DashboardCatalogService.GetDashboardCatalog:output_type -> com.coralogixapis.dashboards.v1.services.GetDashboardCatalogResponse - 4, // 19: com.coralogixapis.dashboards.v1.services.DashboardCatalogService.ReplaceDefaultDashboard:output_type -> com.coralogixapis.dashboards.v1.services.ReplaceDefaultDashboardResponse - 6, // 20: com.coralogixapis.dashboards.v1.services.DashboardCatalogService.PinDashboard:output_type -> com.coralogixapis.dashboards.v1.services.PinDashboardResponse - 8, // 21: com.coralogixapis.dashboards.v1.services.DashboardCatalogService.UnpinDashboard:output_type -> com.coralogixapis.dashboards.v1.services.UnpinDashboardResponse - 18, // [18:22] is the sub-list for method output_type - 14, // [14:18] is the sub-list for method input_type - 14, // [14:14] is the sub-list for extension type_name - 14, // [14:14] is the sub-list for extension extendee - 0, // [0:14] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_init() } -func file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_init() { - if File_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto != nil { - return - } - file_com_coralogixapis_dashboards_v1_audit_log_proto_init() - file_com_coralogixapis_dashboards_v1_types_proto_init() - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetDashboardCatalogRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetDashboardCatalogResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DashboardCatalogItem); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ReplaceDefaultDashboardRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ReplaceDefaultDashboardResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PinDashboardRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PinDashboardResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UnpinDashboardRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UnpinDashboardResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDesc, - NumEnums: 0, - NumMessages: 9, - NumExtensions: 0, - NumServices: 1, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_depIdxs, - MessageInfos: file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto = out.File - file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_services_dashboard_catalog_service_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/dashboard_catalog_service_grpc.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/dashboard_catalog_service_grpc.pb.go deleted file mode 100644 index c578f7e..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/dashboard_catalog_service_grpc.pb.go +++ /dev/null @@ -1,215 +0,0 @@ -// Code generated by protoc-gen-go-grpc. DO NOT EDIT. -// versions: -// - protoc-gen-go-grpc v1.2.0 -// - protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/services/dashboard_catalog_service.proto - -package v1 - -import ( - context "context" - - grpc "google.golang.org/grpc" - codes "google.golang.org/grpc/codes" - status "google.golang.org/grpc/status" -) - -// This is a compile-time assertion to ensure that this generated file -// is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 - -// DashboardCatalogServiceClient is the client API for DashboardCatalogService service. -// -// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. -type DashboardCatalogServiceClient interface { - GetDashboardCatalog(ctx context.Context, in *GetDashboardCatalogRequest, opts ...grpc.CallOption) (*GetDashboardCatalogResponse, error) - ReplaceDefaultDashboard(ctx context.Context, in *ReplaceDefaultDashboardRequest, opts ...grpc.CallOption) (*ReplaceDefaultDashboardResponse, error) - PinDashboard(ctx context.Context, in *PinDashboardRequest, opts ...grpc.CallOption) (*PinDashboardResponse, error) - UnpinDashboard(ctx context.Context, in *UnpinDashboardRequest, opts ...grpc.CallOption) (*UnpinDashboardResponse, error) -} - -type dashboardCatalogServiceClient struct { - cc grpc.ClientConnInterface -} - -func NewDashboardCatalogServiceClient(cc grpc.ClientConnInterface) DashboardCatalogServiceClient { - return &dashboardCatalogServiceClient{cc} -} - -func (c *dashboardCatalogServiceClient) GetDashboardCatalog(ctx context.Context, in *GetDashboardCatalogRequest, opts ...grpc.CallOption) (*GetDashboardCatalogResponse, error) { - out := new(GetDashboardCatalogResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.dashboards.v1.services.DashboardCatalogService/GetDashboardCatalog", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *dashboardCatalogServiceClient) ReplaceDefaultDashboard(ctx context.Context, in *ReplaceDefaultDashboardRequest, opts ...grpc.CallOption) (*ReplaceDefaultDashboardResponse, error) { - out := new(ReplaceDefaultDashboardResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.dashboards.v1.services.DashboardCatalogService/ReplaceDefaultDashboard", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *dashboardCatalogServiceClient) PinDashboard(ctx context.Context, in *PinDashboardRequest, opts ...grpc.CallOption) (*PinDashboardResponse, error) { - out := new(PinDashboardResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.dashboards.v1.services.DashboardCatalogService/PinDashboard", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *dashboardCatalogServiceClient) UnpinDashboard(ctx context.Context, in *UnpinDashboardRequest, opts ...grpc.CallOption) (*UnpinDashboardResponse, error) { - out := new(UnpinDashboardResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.dashboards.v1.services.DashboardCatalogService/UnpinDashboard", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -// DashboardCatalogServiceServer is the server API for DashboardCatalogService service. -// All implementations must embed UnimplementedDashboardCatalogServiceServer -// for forward compatibility -type DashboardCatalogServiceServer interface { - GetDashboardCatalog(context.Context, *GetDashboardCatalogRequest) (*GetDashboardCatalogResponse, error) - ReplaceDefaultDashboard(context.Context, *ReplaceDefaultDashboardRequest) (*ReplaceDefaultDashboardResponse, error) - PinDashboard(context.Context, *PinDashboardRequest) (*PinDashboardResponse, error) - UnpinDashboard(context.Context, *UnpinDashboardRequest) (*UnpinDashboardResponse, error) - mustEmbedUnimplementedDashboardCatalogServiceServer() -} - -// UnimplementedDashboardCatalogServiceServer must be embedded to have forward compatible implementations. -type UnimplementedDashboardCatalogServiceServer struct { -} - -func (UnimplementedDashboardCatalogServiceServer) GetDashboardCatalog(context.Context, *GetDashboardCatalogRequest) (*GetDashboardCatalogResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method GetDashboardCatalog not implemented") -} -func (UnimplementedDashboardCatalogServiceServer) ReplaceDefaultDashboard(context.Context, *ReplaceDefaultDashboardRequest) (*ReplaceDefaultDashboardResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method ReplaceDefaultDashboard not implemented") -} -func (UnimplementedDashboardCatalogServiceServer) PinDashboard(context.Context, *PinDashboardRequest) (*PinDashboardResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method PinDashboard not implemented") -} -func (UnimplementedDashboardCatalogServiceServer) UnpinDashboard(context.Context, *UnpinDashboardRequest) (*UnpinDashboardResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method UnpinDashboard not implemented") -} -func (UnimplementedDashboardCatalogServiceServer) mustEmbedUnimplementedDashboardCatalogServiceServer() { -} - -// UnsafeDashboardCatalogServiceServer may be embedded to opt out of forward compatibility for this service. -// Use of this interface is not recommended, as added methods to DashboardCatalogServiceServer will -// result in compilation errors. -type UnsafeDashboardCatalogServiceServer interface { - mustEmbedUnimplementedDashboardCatalogServiceServer() -} - -func RegisterDashboardCatalogServiceServer(s grpc.ServiceRegistrar, srv DashboardCatalogServiceServer) { - s.RegisterService(&DashboardCatalogService_ServiceDesc, srv) -} - -func _DashboardCatalogService_GetDashboardCatalog_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(GetDashboardCatalogRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(DashboardCatalogServiceServer).GetDashboardCatalog(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.dashboards.v1.services.DashboardCatalogService/GetDashboardCatalog", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(DashboardCatalogServiceServer).GetDashboardCatalog(ctx, req.(*GetDashboardCatalogRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _DashboardCatalogService_ReplaceDefaultDashboard_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(ReplaceDefaultDashboardRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(DashboardCatalogServiceServer).ReplaceDefaultDashboard(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.dashboards.v1.services.DashboardCatalogService/ReplaceDefaultDashboard", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(DashboardCatalogServiceServer).ReplaceDefaultDashboard(ctx, req.(*ReplaceDefaultDashboardRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _DashboardCatalogService_PinDashboard_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(PinDashboardRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(DashboardCatalogServiceServer).PinDashboard(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.dashboards.v1.services.DashboardCatalogService/PinDashboard", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(DashboardCatalogServiceServer).PinDashboard(ctx, req.(*PinDashboardRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _DashboardCatalogService_UnpinDashboard_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(UnpinDashboardRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(DashboardCatalogServiceServer).UnpinDashboard(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.dashboards.v1.services.DashboardCatalogService/UnpinDashboard", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(DashboardCatalogServiceServer).UnpinDashboard(ctx, req.(*UnpinDashboardRequest)) - } - return interceptor(ctx, in, info, handler) -} - -// DashboardCatalogService_ServiceDesc is the grpc.ServiceDesc for DashboardCatalogService service. -// It's only intended for direct use with grpc.RegisterService, -// and not to be introspected or modified (even as a copy) -var DashboardCatalogService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "com.coralogixapis.dashboards.v1.services.DashboardCatalogService", - HandlerType: (*DashboardCatalogServiceServer)(nil), - Methods: []grpc.MethodDesc{ - { - MethodName: "GetDashboardCatalog", - Handler: _DashboardCatalogService_GetDashboardCatalog_Handler, - }, - { - MethodName: "ReplaceDefaultDashboard", - Handler: _DashboardCatalogService_ReplaceDefaultDashboard_Handler, - }, - { - MethodName: "PinDashboard", - Handler: _DashboardCatalogService_PinDashboard_Handler, - }, - { - MethodName: "UnpinDashboard", - Handler: _DashboardCatalogService_UnpinDashboard_Handler, - }, - }, - Streams: []grpc.StreamDesc{}, - Metadata: "com/coralogixapis/dashboards/v1/services/dashboard_catalog_service.proto", -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/dashboards_service.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/dashboards_service.pb.go deleted file mode 100644 index e92f791..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/dashboards_service.pb.go +++ /dev/null @@ -1,693 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/services/dashboards_service.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - _ "google.golang.org/protobuf/types/descriptorpb" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type CreateDashboardRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - RequestId *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"` - Dashboard *Dashboard `protobuf:"bytes,2,opt,name=dashboard,proto3" json:"dashboard,omitempty"` -} - -func (x *CreateDashboardRequest) Reset() { - *x = CreateDashboardRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *CreateDashboardRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*CreateDashboardRequest) ProtoMessage() {} - -func (x *CreateDashboardRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use CreateDashboardRequest.ProtoReflect.Descriptor instead. -func (*CreateDashboardRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDescGZIP(), []int{0} -} - -func (x *CreateDashboardRequest) GetRequestId() *wrapperspb.StringValue { - if x != nil { - return x.RequestId - } - return nil -} - -func (x *CreateDashboardRequest) GetDashboard() *Dashboard { - if x != nil { - return x.Dashboard - } - return nil -} - -type CreateDashboardResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *CreateDashboardResponse) Reset() { - *x = CreateDashboardResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *CreateDashboardResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*CreateDashboardResponse) ProtoMessage() {} - -func (x *CreateDashboardResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use CreateDashboardResponse.ProtoReflect.Descriptor instead. -func (*CreateDashboardResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDescGZIP(), []int{1} -} - -type ReplaceDashboardRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - RequestId *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"` - Dashboard *Dashboard `protobuf:"bytes,2,opt,name=dashboard,proto3" json:"dashboard,omitempty"` -} - -func (x *ReplaceDashboardRequest) Reset() { - *x = ReplaceDashboardRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[2] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ReplaceDashboardRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ReplaceDashboardRequest) ProtoMessage() {} - -func (x *ReplaceDashboardRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[2] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ReplaceDashboardRequest.ProtoReflect.Descriptor instead. -func (*ReplaceDashboardRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDescGZIP(), []int{2} -} - -func (x *ReplaceDashboardRequest) GetRequestId() *wrapperspb.StringValue { - if x != nil { - return x.RequestId - } - return nil -} - -func (x *ReplaceDashboardRequest) GetDashboard() *Dashboard { - if x != nil { - return x.Dashboard - } - return nil -} - -type ReplaceDashboardResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *ReplaceDashboardResponse) Reset() { - *x = ReplaceDashboardResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[3] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ReplaceDashboardResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ReplaceDashboardResponse) ProtoMessage() {} - -func (x *ReplaceDashboardResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[3] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ReplaceDashboardResponse.ProtoReflect.Descriptor instead. -func (*ReplaceDashboardResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDescGZIP(), []int{3} -} - -type DeleteDashboardRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - RequestId *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"` - DashboardId *UUID `protobuf:"bytes,2,opt,name=dashboard_id,json=dashboardId,proto3" json:"dashboard_id,omitempty"` -} - -func (x *DeleteDashboardRequest) Reset() { - *x = DeleteDashboardRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[4] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *DeleteDashboardRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*DeleteDashboardRequest) ProtoMessage() {} - -func (x *DeleteDashboardRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[4] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use DeleteDashboardRequest.ProtoReflect.Descriptor instead. -func (*DeleteDashboardRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDescGZIP(), []int{4} -} - -func (x *DeleteDashboardRequest) GetRequestId() *wrapperspb.StringValue { - if x != nil { - return x.RequestId - } - return nil -} - -func (x *DeleteDashboardRequest) GetDashboardId() *UUID { - if x != nil { - return x.DashboardId - } - return nil -} - -type DeleteDashboardResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *DeleteDashboardResponse) Reset() { - *x = DeleteDashboardResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[5] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *DeleteDashboardResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*DeleteDashboardResponse) ProtoMessage() {} - -func (x *DeleteDashboardResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[5] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use DeleteDashboardResponse.ProtoReflect.Descriptor instead. -func (*DeleteDashboardResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDescGZIP(), []int{5} -} - -type GetDashboardRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - DashboardId *UUID `protobuf:"bytes,1,opt,name=dashboard_id,json=dashboardId,proto3" json:"dashboard_id,omitempty"` -} - -func (x *GetDashboardRequest) Reset() { - *x = GetDashboardRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[6] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetDashboardRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetDashboardRequest) ProtoMessage() {} - -func (x *GetDashboardRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[6] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GetDashboardRequest.ProtoReflect.Descriptor instead. -func (*GetDashboardRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDescGZIP(), []int{6} -} - -func (x *GetDashboardRequest) GetDashboardId() *UUID { - if x != nil { - return x.DashboardId - } - return nil -} - -type GetDashboardResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Dashboard *Dashboard `protobuf:"bytes,1,opt,name=dashboard,proto3" json:"dashboard,omitempty"` -} - -func (x *GetDashboardResponse) Reset() { - *x = GetDashboardResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[7] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetDashboardResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetDashboardResponse) ProtoMessage() {} - -func (x *GetDashboardResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[7] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GetDashboardResponse.ProtoReflect.Descriptor instead. -func (*GetDashboardResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDescGZIP(), []int{7} -} - -func (x *GetDashboardResponse) GetDashboard() *Dashboard { - if x != nil { - return x.Dashboard - } - return nil -} - -var File_com_coralogixapis_dashboards_v1_services_dashboards_service_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDesc = []byte{ - 0x0a, 0x41, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, - 0x6f, 0x61, 0x72, 0x64, 0x73, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x12, 0x28, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x33, 0x63, - 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, - 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x61, - 0x73, 0x74, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x1a, 0x2f, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, - 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, - 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x1a, 0x2b, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x22, 0xa3, 0x01, 0x0a, 0x16, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x61, 0x73, - 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3b, 0x0a, - 0x0a, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, - 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x12, 0x4c, 0x0a, 0x09, 0x64, 0x61, - 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, - 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, - 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, - 0x61, 0x73, 0x74, 0x2e, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x09, 0x64, - 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x22, 0x19, 0x0a, 0x17, 0x43, 0x72, 0x65, 0x61, - 0x74, 0x65, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x22, 0xa4, 0x01, 0x0a, 0x17, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x44, - 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, - 0x3b, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, - 0x65, 0x52, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x12, 0x4c, 0x0a, 0x09, - 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x2e, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, - 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, - 0x09, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x22, 0x1a, 0x0a, 0x18, 0x52, 0x65, - 0x70, 0x6c, 0x61, 0x63, 0x65, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x9f, 0x01, 0x0a, 0x16, 0x44, 0x65, 0x6c, 0x65, 0x74, - 0x65, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x12, 0x3b, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, - 0x6c, 0x75, 0x65, 0x52, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x12, 0x48, - 0x0a, 0x0c, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x55, 0x49, 0x44, 0x52, 0x0b, 0x64, 0x61, 0x73, - 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x49, 0x64, 0x22, 0x19, 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, - 0x74, 0x65, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x22, 0x5f, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, - 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x48, 0x0a, 0x0c, 0x64, 0x61, - 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, - 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, - 0x76, 0x31, 0x2e, 0x55, 0x55, 0x49, 0x44, 0x52, 0x0b, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x49, 0x64, 0x22, 0x64, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x44, 0x61, 0x73, 0x68, 0x62, - 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4c, 0x0a, 0x09, - 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x2e, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, - 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, - 0x09, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x32, 0xcf, 0x05, 0x0a, 0x11, 0x44, - 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x12, 0xae, 0x01, 0x0a, 0x0f, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x61, 0x73, 0x68, 0x62, - 0x6f, 0x61, 0x72, 0x64, 0x12, 0x40, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x41, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, - 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, - 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, - 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x16, 0xba, 0xb8, 0x02, 0x12, 0x0a, - 0x10, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, - 0x64, 0x12, 0xb2, 0x01, 0x0a, 0x10, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x44, 0x61, 0x73, - 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x12, 0x41, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, - 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, - 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, - 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x44, 0x61, 0x73, 0x68, - 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x17, 0xba, - 0xb8, 0x02, 0x13, 0x0a, 0x11, 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x20, 0x64, 0x61, 0x73, - 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x12, 0xae, 0x01, 0x0a, 0x0f, 0x44, 0x65, 0x6c, 0x65, 0x74, - 0x65, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x12, 0x40, 0x2e, 0x63, 0x6f, 0x6d, - 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, - 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x44, 0x61, 0x73, 0x68, - 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x41, 0x2e, 0x63, - 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, - 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x44, 0x61, - 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, - 0x16, 0xba, 0xb8, 0x02, 0x12, 0x0a, 0x10, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x20, 0x64, 0x61, - 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x12, 0xa2, 0x01, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x44, - 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x12, 0x3d, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, - 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, - 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x74, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, - 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x2e, 0x47, 0x65, 0x74, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x13, 0xba, 0xb8, 0x02, 0x0f, 0x0a, 0x0d, 0x67, - 0x65, 0x74, 0x20, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x42, 0x04, 0x5a, 0x02, - 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDescData = file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes = make([]protoimpl.MessageInfo, 8) -var file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_goTypes = []interface{}{ - (*CreateDashboardRequest)(nil), // 0: com.coralogixapis.dashboards.v1.services.CreateDashboardRequest - (*CreateDashboardResponse)(nil), // 1: com.coralogixapis.dashboards.v1.services.CreateDashboardResponse - (*ReplaceDashboardRequest)(nil), // 2: com.coralogixapis.dashboards.v1.services.ReplaceDashboardRequest - (*ReplaceDashboardResponse)(nil), // 3: com.coralogixapis.dashboards.v1.services.ReplaceDashboardResponse - (*DeleteDashboardRequest)(nil), // 4: com.coralogixapis.dashboards.v1.services.DeleteDashboardRequest - (*DeleteDashboardResponse)(nil), // 5: com.coralogixapis.dashboards.v1.services.DeleteDashboardResponse - (*GetDashboardRequest)(nil), // 6: com.coralogixapis.dashboards.v1.services.GetDashboardRequest - (*GetDashboardResponse)(nil), // 7: com.coralogixapis.dashboards.v1.services.GetDashboardResponse - (*wrapperspb.StringValue)(nil), // 8: google.protobuf.StringValue - (*Dashboard)(nil), // 9: com.coralogixapis.dashboards.v1.ast.Dashboard - (*UUID)(nil), // 10: com.coralogixapis.dashboards.v1.UUID -} -var file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_depIdxs = []int32{ - 8, // 0: com.coralogixapis.dashboards.v1.services.CreateDashboardRequest.request_id:type_name -> google.protobuf.StringValue - 9, // 1: com.coralogixapis.dashboards.v1.services.CreateDashboardRequest.dashboard:type_name -> com.coralogixapis.dashboards.v1.ast.Dashboard - 8, // 2: com.coralogixapis.dashboards.v1.services.ReplaceDashboardRequest.request_id:type_name -> google.protobuf.StringValue - 9, // 3: com.coralogixapis.dashboards.v1.services.ReplaceDashboardRequest.dashboard:type_name -> com.coralogixapis.dashboards.v1.ast.Dashboard - 8, // 4: com.coralogixapis.dashboards.v1.services.DeleteDashboardRequest.request_id:type_name -> google.protobuf.StringValue - 10, // 5: com.coralogixapis.dashboards.v1.services.DeleteDashboardRequest.dashboard_id:type_name -> com.coralogixapis.dashboards.v1.UUID - 10, // 6: com.coralogixapis.dashboards.v1.services.GetDashboardRequest.dashboard_id:type_name -> com.coralogixapis.dashboards.v1.UUID - 9, // 7: com.coralogixapis.dashboards.v1.services.GetDashboardResponse.dashboard:type_name -> com.coralogixapis.dashboards.v1.ast.Dashboard - 0, // 8: com.coralogixapis.dashboards.v1.services.DashboardsService.CreateDashboard:input_type -> com.coralogixapis.dashboards.v1.services.CreateDashboardRequest - 2, // 9: com.coralogixapis.dashboards.v1.services.DashboardsService.ReplaceDashboard:input_type -> com.coralogixapis.dashboards.v1.services.ReplaceDashboardRequest - 4, // 10: com.coralogixapis.dashboards.v1.services.DashboardsService.DeleteDashboard:input_type -> com.coralogixapis.dashboards.v1.services.DeleteDashboardRequest - 6, // 11: com.coralogixapis.dashboards.v1.services.DashboardsService.GetDashboard:input_type -> com.coralogixapis.dashboards.v1.services.GetDashboardRequest - 1, // 12: com.coralogixapis.dashboards.v1.services.DashboardsService.CreateDashboard:output_type -> com.coralogixapis.dashboards.v1.services.CreateDashboardResponse - 3, // 13: com.coralogixapis.dashboards.v1.services.DashboardsService.ReplaceDashboard:output_type -> com.coralogixapis.dashboards.v1.services.ReplaceDashboardResponse - 5, // 14: com.coralogixapis.dashboards.v1.services.DashboardsService.DeleteDashboard:output_type -> com.coralogixapis.dashboards.v1.services.DeleteDashboardResponse - 7, // 15: com.coralogixapis.dashboards.v1.services.DashboardsService.GetDashboard:output_type -> com.coralogixapis.dashboards.v1.services.GetDashboardResponse - 12, // [12:16] is the sub-list for method output_type - 8, // [8:12] is the sub-list for method input_type - 8, // [8:8] is the sub-list for extension type_name - 8, // [8:8] is the sub-list for extension extendee - 0, // [0:8] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_init() } -func file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_init() { - if File_com_coralogixapis_dashboards_v1_services_dashboards_service_proto != nil { - return - } - file_com_coralogixapis_dashboards_v1_ast_dashboard_proto_init() - file_com_coralogixapis_dashboards_v1_audit_log_proto_init() - file_com_coralogixapis_dashboards_v1_types_proto_init() - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateDashboardRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateDashboardResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ReplaceDashboardRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ReplaceDashboardResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteDashboardRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteDashboardResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetDashboardRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetDashboardResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDesc, - NumEnums: 0, - NumMessages: 8, - NumExtensions: 0, - NumServices: 1, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_depIdxs, - MessageInfos: file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_services_dashboards_service_proto = out.File - file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_services_dashboards_service_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/dashboards_service_grpc.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/dashboards_service_grpc.pb.go deleted file mode 100644 index fc3bb41..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/dashboards_service_grpc.pb.go +++ /dev/null @@ -1,214 +0,0 @@ -// Code generated by protoc-gen-go-grpc. DO NOT EDIT. -// versions: -// - protoc-gen-go-grpc v1.2.0 -// - protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/services/dashboards_service.proto - -package v1 - -import ( - context "context" - - grpc "google.golang.org/grpc" - codes "google.golang.org/grpc/codes" - status "google.golang.org/grpc/status" -) - -// This is a compile-time assertion to ensure that this generated file -// is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 - -// DashboardsServiceClient is the client API for DashboardsService service. -// -// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. -type DashboardsServiceClient interface { - CreateDashboard(ctx context.Context, in *CreateDashboardRequest, opts ...grpc.CallOption) (*CreateDashboardResponse, error) - ReplaceDashboard(ctx context.Context, in *ReplaceDashboardRequest, opts ...grpc.CallOption) (*ReplaceDashboardResponse, error) - DeleteDashboard(ctx context.Context, in *DeleteDashboardRequest, opts ...grpc.CallOption) (*DeleteDashboardResponse, error) - GetDashboard(ctx context.Context, in *GetDashboardRequest, opts ...grpc.CallOption) (*GetDashboardResponse, error) -} - -type dashboardsServiceClient struct { - cc grpc.ClientConnInterface -} - -func NewDashboardsServiceClient(cc grpc.ClientConnInterface) DashboardsServiceClient { - return &dashboardsServiceClient{cc} -} - -func (c *dashboardsServiceClient) CreateDashboard(ctx context.Context, in *CreateDashboardRequest, opts ...grpc.CallOption) (*CreateDashboardResponse, error) { - out := new(CreateDashboardResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.dashboards.v1.services.DashboardsService/CreateDashboard", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *dashboardsServiceClient) ReplaceDashboard(ctx context.Context, in *ReplaceDashboardRequest, opts ...grpc.CallOption) (*ReplaceDashboardResponse, error) { - out := new(ReplaceDashboardResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.dashboards.v1.services.DashboardsService/ReplaceDashboard", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *dashboardsServiceClient) DeleteDashboard(ctx context.Context, in *DeleteDashboardRequest, opts ...grpc.CallOption) (*DeleteDashboardResponse, error) { - out := new(DeleteDashboardResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.dashboards.v1.services.DashboardsService/DeleteDashboard", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *dashboardsServiceClient) GetDashboard(ctx context.Context, in *GetDashboardRequest, opts ...grpc.CallOption) (*GetDashboardResponse, error) { - out := new(GetDashboardResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.dashboards.v1.services.DashboardsService/GetDashboard", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -// DashboardsServiceServer is the server API for DashboardsService service. -// All implementations must embed UnimplementedDashboardsServiceServer -// for forward compatibility -type DashboardsServiceServer interface { - CreateDashboard(context.Context, *CreateDashboardRequest) (*CreateDashboardResponse, error) - ReplaceDashboard(context.Context, *ReplaceDashboardRequest) (*ReplaceDashboardResponse, error) - DeleteDashboard(context.Context, *DeleteDashboardRequest) (*DeleteDashboardResponse, error) - GetDashboard(context.Context, *GetDashboardRequest) (*GetDashboardResponse, error) - mustEmbedUnimplementedDashboardsServiceServer() -} - -// UnimplementedDashboardsServiceServer must be embedded to have forward compatible implementations. -type UnimplementedDashboardsServiceServer struct { -} - -func (UnimplementedDashboardsServiceServer) CreateDashboard(context.Context, *CreateDashboardRequest) (*CreateDashboardResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method CreateDashboard not implemented") -} -func (UnimplementedDashboardsServiceServer) ReplaceDashboard(context.Context, *ReplaceDashboardRequest) (*ReplaceDashboardResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method ReplaceDashboard not implemented") -} -func (UnimplementedDashboardsServiceServer) DeleteDashboard(context.Context, *DeleteDashboardRequest) (*DeleteDashboardResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method DeleteDashboard not implemented") -} -func (UnimplementedDashboardsServiceServer) GetDashboard(context.Context, *GetDashboardRequest) (*GetDashboardResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method GetDashboard not implemented") -} -func (UnimplementedDashboardsServiceServer) mustEmbedUnimplementedDashboardsServiceServer() {} - -// UnsafeDashboardsServiceServer may be embedded to opt out of forward compatibility for this service. -// Use of this interface is not recommended, as added methods to DashboardsServiceServer will -// result in compilation errors. -type UnsafeDashboardsServiceServer interface { - mustEmbedUnimplementedDashboardsServiceServer() -} - -func RegisterDashboardsServiceServer(s grpc.ServiceRegistrar, srv DashboardsServiceServer) { - s.RegisterService(&DashboardsService_ServiceDesc, srv) -} - -func _DashboardsService_CreateDashboard_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(CreateDashboardRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(DashboardsServiceServer).CreateDashboard(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.dashboards.v1.services.DashboardsService/CreateDashboard", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(DashboardsServiceServer).CreateDashboard(ctx, req.(*CreateDashboardRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _DashboardsService_ReplaceDashboard_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(ReplaceDashboardRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(DashboardsServiceServer).ReplaceDashboard(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.dashboards.v1.services.DashboardsService/ReplaceDashboard", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(DashboardsServiceServer).ReplaceDashboard(ctx, req.(*ReplaceDashboardRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _DashboardsService_DeleteDashboard_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(DeleteDashboardRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(DashboardsServiceServer).DeleteDashboard(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.dashboards.v1.services.DashboardsService/DeleteDashboard", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(DashboardsServiceServer).DeleteDashboard(ctx, req.(*DeleteDashboardRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _DashboardsService_GetDashboard_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(GetDashboardRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(DashboardsServiceServer).GetDashboard(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.dashboards.v1.services.DashboardsService/GetDashboard", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(DashboardsServiceServer).GetDashboard(ctx, req.(*GetDashboardRequest)) - } - return interceptor(ctx, in, info, handler) -} - -// DashboardsService_ServiceDesc is the grpc.ServiceDesc for DashboardsService service. -// It's only intended for direct use with grpc.RegisterService, -// and not to be introspected or modified (even as a copy) -var DashboardsService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "com.coralogixapis.dashboards.v1.services.DashboardsService", - HandlerType: (*DashboardsServiceServer)(nil), - Methods: []grpc.MethodDesc{ - { - MethodName: "CreateDashboard", - Handler: _DashboardsService_CreateDashboard_Handler, - }, - { - MethodName: "ReplaceDashboard", - Handler: _DashboardsService_ReplaceDashboard_Handler, - }, - { - MethodName: "DeleteDashboard", - Handler: _DashboardsService_DeleteDashboard_Handler, - }, - { - MethodName: "GetDashboard", - Handler: _DashboardsService_GetDashboard_Handler, - }, - }, - Streams: []grpc.StreamDesc{}, - Metadata: "com/coralogixapis/dashboards/v1/services/dashboards_service.proto", -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/data_table.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/data_table.pb.go deleted file mode 100644 index 784c929..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/data_table.pb.go +++ /dev/null @@ -1,534 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/ast/widgets/data_table.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type RowStyle int32 - -const ( - RowStyle_ROW_STYLE_UNSPECIFIED RowStyle = 0 - RowStyle_ROW_STYLE_ONE_LINE RowStyle = 1 - RowStyle_ROW_STYLE_TWO_LINE RowStyle = 2 - RowStyle_ROW_STYLE_CONDENSED RowStyle = 3 - RowStyle_ROW_STYLE_JSON RowStyle = 4 -) - -// Enum value maps for RowStyle. -var ( - RowStyle_name = map[int32]string{ - 0: "ROW_STYLE_UNSPECIFIED", - 1: "ROW_STYLE_ONE_LINE", - 2: "ROW_STYLE_TWO_LINE", - 3: "ROW_STYLE_CONDENSED", - 4: "ROW_STYLE_JSON", - } - RowStyle_value = map[string]int32{ - "ROW_STYLE_UNSPECIFIED": 0, - "ROW_STYLE_ONE_LINE": 1, - "ROW_STYLE_TWO_LINE": 2, - "ROW_STYLE_CONDENSED": 3, - "ROW_STYLE_JSON": 4, - } -) - -func (x RowStyle) Enum() *RowStyle { - p := new(RowStyle) - *p = x - return p -} - -func (x RowStyle) String() string { - return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) -} - -func (RowStyle) Descriptor() protoreflect.EnumDescriptor { - return file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_enumTypes[0].Descriptor() -} - -func (RowStyle) Type() protoreflect.EnumType { - return &file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_enumTypes[0] -} - -func (x RowStyle) Number() protoreflect.EnumNumber { - return protoreflect.EnumNumber(x) -} - -// Deprecated: Use RowStyle.Descriptor instead. -func (RowStyle) EnumDescriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_rawDescGZIP(), []int{0} -} - -type DataTable struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Query *DataTable_Query `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"` - ResultsPerPage *wrapperspb.Int32Value `protobuf:"bytes,2,opt,name=results_per_page,json=resultsPerPage,proto3" json:"results_per_page,omitempty"` - RowStyle RowStyle `protobuf:"varint,3,opt,name=row_style,json=rowStyle,proto3,enum=com.coralogixapis.dashboards.v1.ast.widgets.RowStyle" json:"row_style,omitempty"` - Columns []*DataTable_Column `protobuf:"bytes,4,rep,name=columns,proto3" json:"columns,omitempty"` - OrderBy *OrderingField `protobuf:"bytes,5,opt,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"` -} - -func (x *DataTable) Reset() { - *x = DataTable{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *DataTable) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*DataTable) ProtoMessage() {} - -func (x *DataTable) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use DataTable.ProtoReflect.Descriptor instead. -func (*DataTable) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_rawDescGZIP(), []int{0} -} - -func (x *DataTable) GetQuery() *DataTable_Query { - if x != nil { - return x.Query - } - return nil -} - -func (x *DataTable) GetResultsPerPage() *wrapperspb.Int32Value { - if x != nil { - return x.ResultsPerPage - } - return nil -} - -func (x *DataTable) GetRowStyle() RowStyle { - if x != nil { - return x.RowStyle - } - return RowStyle_ROW_STYLE_UNSPECIFIED -} - -func (x *DataTable) GetColumns() []*DataTable_Column { - if x != nil { - return x.Columns - } - return nil -} - -func (x *DataTable) GetOrderBy() *OrderingField { - if x != nil { - return x.OrderBy - } - return nil -} - -type DataTable_Query struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - // Types that are assignable to Value: - // *DataTable_Query_Logs - Value isDataTable_Query_Value `protobuf_oneof:"value"` -} - -func (x *DataTable_Query) Reset() { - *x = DataTable_Query{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *DataTable_Query) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*DataTable_Query) ProtoMessage() {} - -func (x *DataTable_Query) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use DataTable_Query.ProtoReflect.Descriptor instead. -func (*DataTable_Query) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_rawDescGZIP(), []int{0, 0} -} - -func (m *DataTable_Query) GetValue() isDataTable_Query_Value { - if m != nil { - return m.Value - } - return nil -} - -func (x *DataTable_Query) GetLogs() *DataTable_LogsQuery { - if x, ok := x.GetValue().(*DataTable_Query_Logs); ok { - return x.Logs - } - return nil -} - -type isDataTable_Query_Value interface { - isDataTable_Query_Value() -} - -type DataTable_Query_Logs struct { - Logs *DataTable_LogsQuery `protobuf:"bytes,1,opt,name=logs,proto3,oneof"` -} - -func (*DataTable_Query_Logs) isDataTable_Query_Value() {} - -type DataTable_LogsQuery struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - LuceneQuery *LuceneQuery `protobuf:"bytes,1,opt,name=lucene_query,json=luceneQuery,proto3" json:"lucene_query,omitempty"` - Filters []*SearchFilter `protobuf:"bytes,2,rep,name=filters,proto3" json:"filters,omitempty"` -} - -func (x *DataTable_LogsQuery) Reset() { - *x = DataTable_LogsQuery{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_msgTypes[2] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *DataTable_LogsQuery) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*DataTable_LogsQuery) ProtoMessage() {} - -func (x *DataTable_LogsQuery) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_msgTypes[2] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use DataTable_LogsQuery.ProtoReflect.Descriptor instead. -func (*DataTable_LogsQuery) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_rawDescGZIP(), []int{0, 1} -} - -func (x *DataTable_LogsQuery) GetLuceneQuery() *LuceneQuery { - if x != nil { - return x.LuceneQuery - } - return nil -} - -func (x *DataTable_LogsQuery) GetFilters() []*SearchFilter { - if x != nil { - return x.Filters - } - return nil -} - -type DataTable_Column struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Field *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"` -} - -func (x *DataTable_Column) Reset() { - *x = DataTable_Column{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_msgTypes[3] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *DataTable_Column) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*DataTable_Column) ProtoMessage() {} - -func (x *DataTable_Column) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_msgTypes[3] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use DataTable_Column.ProtoReflect.Descriptor instead. -func (*DataTable_Column) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_rawDescGZIP(), []int{0, 2} -} - -func (x *DataTable_Column) GetField() *wrapperspb.StringValue { - if x != nil { - return x.Field - } - return nil -} - -var File_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_rawDesc = []byte{ - 0x0a, 0x3c, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x61, 0x73, 0x74, 0x2f, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x2f, 0x64, 0x61, - 0x74, 0x61, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x2b, - 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, - 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, - 0x61, 0x73, 0x74, 0x2e, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x1a, 0x40, 0x63, 0x6f, 0x6d, - 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, - 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x73, 0x74, - 0x2f, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, - 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3b, 0x63, - 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, - 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x63, - 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x66, - 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3a, 0x63, 0x6f, 0x6d, 0x2f, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, - 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, - 0x6f, 0x6e, 0x2f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x8f, 0x06, 0x0a, 0x09, 0x44, 0x61, 0x74, 0x61, 0x54, - 0x61, 0x62, 0x6c, 0x65, 0x12, 0x52, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, - 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, - 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x51, 0x75, 0x65, 0x72, - 0x79, 0x52, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x12, 0x45, 0x0a, 0x10, 0x72, 0x65, 0x73, 0x75, - 0x6c, 0x74, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, - 0x0e, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x50, 0x65, 0x72, 0x50, 0x61, 0x67, 0x65, 0x12, - 0x52, 0x0a, 0x09, 0x72, 0x6f, 0x77, 0x5f, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x0e, 0x32, 0x35, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, - 0x2e, 0x52, 0x6f, 0x77, 0x53, 0x74, 0x79, 0x6c, 0x65, 0x52, 0x08, 0x72, 0x6f, 0x77, 0x53, 0x74, - 0x79, 0x6c, 0x65, 0x12, 0x57, 0x0a, 0x07, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x04, - 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x77, 0x69, 0x64, 0x67, 0x65, - 0x74, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6c, - 0x75, 0x6d, 0x6e, 0x52, 0x07, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x12, 0x50, 0x0a, 0x08, - 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x62, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, - 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, - 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, - 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, - 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x79, 0x1a, 0x68, - 0x0a, 0x05, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x56, 0x0a, 0x04, 0x6c, 0x6f, 0x67, 0x73, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x40, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, - 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, - 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x77, 0x69, 0x64, 0x67, - 0x65, 0x74, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x4c, 0x6f, - 0x67, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x48, 0x00, 0x52, 0x04, 0x6c, 0x6f, 0x67, 0x73, 0x42, - 0x07, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x1a, 0xbf, 0x01, 0x0a, 0x09, 0x4c, 0x6f, 0x67, - 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x62, 0x0a, 0x0c, 0x6c, 0x75, 0x63, 0x65, 0x6e, 0x65, - 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3f, 0x2e, 0x63, - 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, - 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, - 0x73, 0x74, 0x2e, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, - 0x6e, 0x2e, 0x4c, 0x75, 0x63, 0x65, 0x6e, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x0b, 0x6c, - 0x75, 0x63, 0x65, 0x6e, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x4e, 0x0a, 0x07, 0x66, 0x69, - 0x6c, 0x74, 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x63, 0x6f, - 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, - 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, - 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x69, 0x6c, 0x74, 0x65, - 0x72, 0x52, 0x07, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x1a, 0x3c, 0x0a, 0x06, 0x43, 0x6f, - 0x6c, 0x75, 0x6d, 0x6e, 0x12, 0x32, 0x0a, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, - 0x65, 0x52, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2a, 0x82, 0x01, 0x0a, 0x08, 0x52, 0x6f, 0x77, - 0x53, 0x74, 0x79, 0x6c, 0x65, 0x12, 0x19, 0x0a, 0x15, 0x52, 0x4f, 0x57, 0x5f, 0x53, 0x54, 0x59, - 0x4c, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, - 0x12, 0x16, 0x0a, 0x12, 0x52, 0x4f, 0x57, 0x5f, 0x53, 0x54, 0x59, 0x4c, 0x45, 0x5f, 0x4f, 0x4e, - 0x45, 0x5f, 0x4c, 0x49, 0x4e, 0x45, 0x10, 0x01, 0x12, 0x16, 0x0a, 0x12, 0x52, 0x4f, 0x57, 0x5f, - 0x53, 0x54, 0x59, 0x4c, 0x45, 0x5f, 0x54, 0x57, 0x4f, 0x5f, 0x4c, 0x49, 0x4e, 0x45, 0x10, 0x02, - 0x12, 0x17, 0x0a, 0x13, 0x52, 0x4f, 0x57, 0x5f, 0x53, 0x54, 0x59, 0x4c, 0x45, 0x5f, 0x43, 0x4f, - 0x4e, 0x44, 0x45, 0x4e, 0x53, 0x45, 0x44, 0x10, 0x03, 0x12, 0x12, 0x0a, 0x0e, 0x52, 0x4f, 0x57, - 0x5f, 0x53, 0x54, 0x59, 0x4c, 0x45, 0x5f, 0x4a, 0x53, 0x4f, 0x4e, 0x10, 0x04, 0x42, 0x04, 0x5a, - 0x02, 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_rawDescData = file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_goTypes = []interface{}{ - (RowStyle)(0), // 0: com.coralogixapis.dashboards.v1.ast.widgets.RowStyle - (*DataTable)(nil), // 1: com.coralogixapis.dashboards.v1.ast.widgets.DataTable - (*DataTable_Query)(nil), // 2: com.coralogixapis.dashboards.v1.ast.widgets.DataTable.Query - (*DataTable_LogsQuery)(nil), // 3: com.coralogixapis.dashboards.v1.ast.widgets.DataTable.LogsQuery - (*DataTable_Column)(nil), // 4: com.coralogixapis.dashboards.v1.ast.widgets.DataTable.Column - (*wrapperspb.Int32Value)(nil), // 5: google.protobuf.Int32Value - (*OrderingField)(nil), // 6: com.coralogixapis.dashboards.v1.common.OrderingField - (*LuceneQuery)(nil), // 7: com.coralogixapis.dashboards.v1.ast.widgets.common.LuceneQuery - (*SearchFilter)(nil), // 8: com.coralogixapis.dashboards.v1.common.SearchFilter - (*wrapperspb.StringValue)(nil), // 9: google.protobuf.StringValue -} -var file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_depIdxs = []int32{ - 2, // 0: com.coralogixapis.dashboards.v1.ast.widgets.DataTable.query:type_name -> com.coralogixapis.dashboards.v1.ast.widgets.DataTable.Query - 5, // 1: com.coralogixapis.dashboards.v1.ast.widgets.DataTable.results_per_page:type_name -> google.protobuf.Int32Value - 0, // 2: com.coralogixapis.dashboards.v1.ast.widgets.DataTable.row_style:type_name -> com.coralogixapis.dashboards.v1.ast.widgets.RowStyle - 4, // 3: com.coralogixapis.dashboards.v1.ast.widgets.DataTable.columns:type_name -> com.coralogixapis.dashboards.v1.ast.widgets.DataTable.Column - 6, // 4: com.coralogixapis.dashboards.v1.ast.widgets.DataTable.order_by:type_name -> com.coralogixapis.dashboards.v1.common.OrderingField - 3, // 5: com.coralogixapis.dashboards.v1.ast.widgets.DataTable.Query.logs:type_name -> com.coralogixapis.dashboards.v1.ast.widgets.DataTable.LogsQuery - 7, // 6: com.coralogixapis.dashboards.v1.ast.widgets.DataTable.LogsQuery.lucene_query:type_name -> com.coralogixapis.dashboards.v1.ast.widgets.common.LuceneQuery - 8, // 7: com.coralogixapis.dashboards.v1.ast.widgets.DataTable.LogsQuery.filters:type_name -> com.coralogixapis.dashboards.v1.common.SearchFilter - 9, // 8: com.coralogixapis.dashboards.v1.ast.widgets.DataTable.Column.field:type_name -> google.protobuf.StringValue - 9, // [9:9] is the sub-list for method output_type - 9, // [9:9] is the sub-list for method input_type - 9, // [9:9] is the sub-list for extension type_name - 9, // [9:9] is the sub-list for extension extendee - 0, // [0:9] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_init() } -func file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_init() { - if File_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto != nil { - return - } - file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_init() - file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_init() - file_com_coralogixapis_dashboards_v1_common_search_filter_proto_init() - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DataTable); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DataTable_Query); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DataTable_LogsQuery); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DataTable_Column); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_msgTypes[1].OneofWrappers = []interface{}{ - (*DataTable_Query_Logs)(nil), - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_rawDesc, - NumEnums: 1, - NumMessages: 4, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_depIdxs, - EnumInfos: file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_enumTypes, - MessageInfos: file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto = out.File - file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/layout.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/layout.pb.go deleted file mode 100644 index 3f1e3a7..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/layout.pb.go +++ /dev/null @@ -1,400 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/ast/layout.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type Layout struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Sections []*Section `protobuf:"bytes,1,rep,name=sections,proto3" json:"sections,omitempty"` -} - -func (x *Layout) Reset() { - *x = Layout{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_layout_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *Layout) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*Layout) ProtoMessage() {} - -func (x *Layout) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_layout_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use Layout.ProtoReflect.Descriptor instead. -func (*Layout) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_layout_proto_rawDescGZIP(), []int{0} -} - -func (x *Layout) GetSections() []*Section { - if x != nil { - return x.Sections - } - return nil -} - -type Section struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Id *UUID `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` - Rows []*Row `protobuf:"bytes,2,rep,name=rows,proto3" json:"rows,omitempty"` -} - -func (x *Section) Reset() { - *x = Section{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_layout_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *Section) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*Section) ProtoMessage() {} - -func (x *Section) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_layout_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use Section.ProtoReflect.Descriptor instead. -func (*Section) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_layout_proto_rawDescGZIP(), []int{1} -} - -func (x *Section) GetId() *UUID { - if x != nil { - return x.Id - } - return nil -} - -func (x *Section) GetRows() []*Row { - if x != nil { - return x.Rows - } - return nil -} - -type Row struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Id *UUID `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` - Appearance *Row_Appearance `protobuf:"bytes,2,opt,name=appearance,proto3" json:"appearance,omitempty"` - Widgets []*Widget `protobuf:"bytes,3,rep,name=widgets,proto3" json:"widgets,omitempty"` -} - -func (x *Row) Reset() { - *x = Row{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_layout_proto_msgTypes[2] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *Row) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*Row) ProtoMessage() {} - -func (x *Row) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_layout_proto_msgTypes[2] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use Row.ProtoReflect.Descriptor instead. -func (*Row) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_layout_proto_rawDescGZIP(), []int{2} -} - -func (x *Row) GetId() *UUID { - if x != nil { - return x.Id - } - return nil -} - -func (x *Row) GetAppearance() *Row_Appearance { - if x != nil { - return x.Appearance - } - return nil -} - -func (x *Row) GetWidgets() []*Widget { - if x != nil { - return x.Widgets - } - return nil -} - -type Row_Appearance struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Height *wrapperspb.Int32Value `protobuf:"bytes,1,opt,name=height,proto3" json:"height,omitempty"` -} - -func (x *Row_Appearance) Reset() { - *x = Row_Appearance{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_layout_proto_msgTypes[3] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *Row_Appearance) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*Row_Appearance) ProtoMessage() {} - -func (x *Row_Appearance) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_layout_proto_msgTypes[3] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use Row_Appearance.ProtoReflect.Descriptor instead. -func (*Row_Appearance) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_layout_proto_rawDescGZIP(), []int{2, 0} -} - -func (x *Row_Appearance) GetHeight() *wrapperspb.Int32Value { - if x != nil { - return x.Height - } - return nil -} - -var File_com_coralogixapis_dashboards_v1_ast_layout_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_ast_layout_proto_rawDesc = []byte{ - 0x0a, 0x30, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x61, 0x73, 0x74, 0x2f, 0x6c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x12, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, - 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, - 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x1a, 0x30, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, - 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, - 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x73, 0x74, 0x2f, 0x77, 0x69, 0x64, - 0x67, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2b, 0x63, 0x6f, 0x6d, 0x2f, 0x63, - 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, - 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x52, 0x0a, 0x06, 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, - 0x12, 0x48, 0x0a, 0x08, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, - 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x52, 0x08, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x7e, 0x0a, 0x07, 0x53, 0x65, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x35, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, - 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, - 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x55, 0x49, 0x44, 0x52, 0x02, 0x69, 0x64, 0x12, 0x3c, 0x0a, 0x04, - 0x72, 0x6f, 0x77, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x63, 0x6f, 0x6d, - 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, - 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, - 0x2e, 0x52, 0x6f, 0x77, 0x52, 0x04, 0x72, 0x6f, 0x77, 0x73, 0x22, 0x9b, 0x02, 0x0a, 0x03, 0x52, - 0x6f, 0x77, 0x12, 0x35, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, - 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, - 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, - 0x2e, 0x55, 0x55, 0x49, 0x44, 0x52, 0x02, 0x69, 0x64, 0x12, 0x53, 0x0a, 0x0a, 0x61, 0x70, 0x70, - 0x65, 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, - 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, - 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, - 0x61, 0x73, 0x74, 0x2e, 0x52, 0x6f, 0x77, 0x2e, 0x41, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e, - 0x63, 0x65, 0x52, 0x0a, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x45, - 0x0a, 0x07, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, - 0x2b, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, - 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x57, 0x69, 0x64, 0x67, 0x65, 0x74, 0x52, 0x07, 0x77, 0x69, - 0x64, 0x67, 0x65, 0x74, 0x73, 0x1a, 0x41, 0x0a, 0x0a, 0x41, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, - 0x6e, 0x63, 0x65, 0x12, 0x33, 0x0a, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, - 0x52, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, 0x62, 0x06, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_ast_layout_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_ast_layout_proto_rawDescData = file_com_coralogixapis_dashboards_v1_ast_layout_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_ast_layout_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_ast_layout_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_ast_layout_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_ast_layout_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_ast_layout_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_ast_layout_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_com_coralogixapis_dashboards_v1_ast_layout_proto_goTypes = []interface{}{ - (*Layout)(nil), // 0: com.coralogixapis.dashboards.v1.ast.Layout - (*Section)(nil), // 1: com.coralogixapis.dashboards.v1.ast.Section - (*Row)(nil), // 2: com.coralogixapis.dashboards.v1.ast.Row - (*Row_Appearance)(nil), // 3: com.coralogixapis.dashboards.v1.ast.Row.Appearance - (*UUID)(nil), // 4: com.coralogixapis.dashboards.v1.UUID - (*Widget)(nil), // 5: com.coralogixapis.dashboards.v1.ast.Widget - (*wrapperspb.Int32Value)(nil), // 6: google.protobuf.Int32Value -} -var file_com_coralogixapis_dashboards_v1_ast_layout_proto_depIdxs = []int32{ - 1, // 0: com.coralogixapis.dashboards.v1.ast.Layout.sections:type_name -> com.coralogixapis.dashboards.v1.ast.Section - 4, // 1: com.coralogixapis.dashboards.v1.ast.Section.id:type_name -> com.coralogixapis.dashboards.v1.UUID - 2, // 2: com.coralogixapis.dashboards.v1.ast.Section.rows:type_name -> com.coralogixapis.dashboards.v1.ast.Row - 4, // 3: com.coralogixapis.dashboards.v1.ast.Row.id:type_name -> com.coralogixapis.dashboards.v1.UUID - 3, // 4: com.coralogixapis.dashboards.v1.ast.Row.appearance:type_name -> com.coralogixapis.dashboards.v1.ast.Row.Appearance - 5, // 5: com.coralogixapis.dashboards.v1.ast.Row.widgets:type_name -> com.coralogixapis.dashboards.v1.ast.Widget - 6, // 6: com.coralogixapis.dashboards.v1.ast.Row.Appearance.height:type_name -> google.protobuf.Int32Value - 7, // [7:7] is the sub-list for method output_type - 7, // [7:7] is the sub-list for method input_type - 7, // [7:7] is the sub-list for extension type_name - 7, // [7:7] is the sub-list for extension extendee - 0, // [0:7] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_ast_layout_proto_init() } -func file_com_coralogixapis_dashboards_v1_ast_layout_proto_init() { - if File_com_coralogixapis_dashboards_v1_ast_layout_proto != nil { - return - } - file_com_coralogixapis_dashboards_v1_ast_widget_proto_init() - file_com_coralogixapis_dashboards_v1_types_proto_init() - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_ast_layout_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Layout); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_layout_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Section); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_layout_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Row); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_layout_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Row_Appearance); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_ast_layout_proto_rawDesc, - NumEnums: 0, - NumMessages: 4, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_ast_layout_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_ast_layout_proto_depIdxs, - MessageInfos: file_com_coralogixapis_dashboards_v1_ast_layout_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_ast_layout_proto = out.File - file_com_coralogixapis_dashboards_v1_ast_layout_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_ast_layout_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_ast_layout_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/legend.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/legend.pb.go deleted file mode 100644 index 0f33a2e..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/legend.pb.go +++ /dev/null @@ -1,241 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/ast/widgets/common/legend.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type Legend_LegendColumn int32 - -const ( - Legend_LEGEND_COLUMN_UNSPECIFIED Legend_LegendColumn = 0 - Legend_LEGEND_COLUMN_MIN Legend_LegendColumn = 1 - Legend_LEGEND_COLUMN_MAX Legend_LegendColumn = 2 - Legend_LEGEND_COLUMN_SUM Legend_LegendColumn = 3 - Legend_LEGEND_COLUMN_AVG Legend_LegendColumn = 4 - Legend_LEGEND_COLUMN_LAST Legend_LegendColumn = 5 -) - -// Enum value maps for Legend_LegendColumn. -var ( - Legend_LegendColumn_name = map[int32]string{ - 0: "LEGEND_COLUMN_UNSPECIFIED", - 1: "LEGEND_COLUMN_MIN", - 2: "LEGEND_COLUMN_MAX", - 3: "LEGEND_COLUMN_SUM", - 4: "LEGEND_COLUMN_AVG", - 5: "LEGEND_COLUMN_LAST", - } - Legend_LegendColumn_value = map[string]int32{ - "LEGEND_COLUMN_UNSPECIFIED": 0, - "LEGEND_COLUMN_MIN": 1, - "LEGEND_COLUMN_MAX": 2, - "LEGEND_COLUMN_SUM": 3, - "LEGEND_COLUMN_AVG": 4, - "LEGEND_COLUMN_LAST": 5, - } -) - -func (x Legend_LegendColumn) Enum() *Legend_LegendColumn { - p := new(Legend_LegendColumn) - *p = x - return p -} - -func (x Legend_LegendColumn) String() string { - return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) -} - -func (Legend_LegendColumn) Descriptor() protoreflect.EnumDescriptor { - return file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_enumTypes[0].Descriptor() -} - -func (Legend_LegendColumn) Type() protoreflect.EnumType { - return &file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_enumTypes[0] -} - -func (x Legend_LegendColumn) Number() protoreflect.EnumNumber { - return protoreflect.EnumNumber(x) -} - -// Deprecated: Use Legend_LegendColumn.Descriptor instead. -func (Legend_LegendColumn) EnumDescriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_rawDescGZIP(), []int{0, 0} -} - -type Legend struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - IsVisible *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=is_visible,json=isVisible,proto3" json:"is_visible,omitempty"` - Columns []Legend_LegendColumn `protobuf:"varint,2,rep,packed,name=columns,proto3,enum=com.coralogixapis.dashboards.v1.ast.widgets.common.Legend_LegendColumn" json:"columns,omitempty"` -} - -func (x *Legend) Reset() { - *x = Legend{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *Legend) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*Legend) ProtoMessage() {} - -func (x *Legend) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use Legend.ProtoReflect.Descriptor instead. -func (*Legend) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_rawDescGZIP(), []int{0} -} - -func (x *Legend) GetIsVisible() *wrapperspb.BoolValue { - if x != nil { - return x.IsVisible - } - return nil -} - -func (x *Legend) GetColumns() []Legend_LegendColumn { - if x != nil { - return x.Columns - } - return nil -} - -var File_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_rawDesc = []byte{ - 0x0a, 0x3f, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x61, 0x73, 0x74, 0x2f, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x2f, 0x63, 0x6f, - 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6c, 0x65, 0x67, 0x65, 0x6e, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x12, 0x32, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, - 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, - 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x2e, 0x63, - 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xca, 0x02, 0x0a, 0x06, 0x4c, 0x65, 0x67, 0x65, 0x6e, 0x64, - 0x12, 0x39, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, - 0x52, 0x09, 0x69, 0x73, 0x56, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x12, 0x61, 0x0a, 0x07, 0x63, - 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x47, 0x2e, 0x63, - 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, - 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, - 0x73, 0x74, 0x2e, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, - 0x6e, 0x2e, 0x4c, 0x65, 0x67, 0x65, 0x6e, 0x64, 0x2e, 0x4c, 0x65, 0x67, 0x65, 0x6e, 0x64, 0x43, - 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x07, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x22, 0xa1, - 0x01, 0x0a, 0x0c, 0x4c, 0x65, 0x67, 0x65, 0x6e, 0x64, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x12, - 0x1d, 0x0a, 0x19, 0x4c, 0x45, 0x47, 0x45, 0x4e, 0x44, 0x5f, 0x43, 0x4f, 0x4c, 0x55, 0x4d, 0x4e, - 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x15, - 0x0a, 0x11, 0x4c, 0x45, 0x47, 0x45, 0x4e, 0x44, 0x5f, 0x43, 0x4f, 0x4c, 0x55, 0x4d, 0x4e, 0x5f, - 0x4d, 0x49, 0x4e, 0x10, 0x01, 0x12, 0x15, 0x0a, 0x11, 0x4c, 0x45, 0x47, 0x45, 0x4e, 0x44, 0x5f, - 0x43, 0x4f, 0x4c, 0x55, 0x4d, 0x4e, 0x5f, 0x4d, 0x41, 0x58, 0x10, 0x02, 0x12, 0x15, 0x0a, 0x11, - 0x4c, 0x45, 0x47, 0x45, 0x4e, 0x44, 0x5f, 0x43, 0x4f, 0x4c, 0x55, 0x4d, 0x4e, 0x5f, 0x53, 0x55, - 0x4d, 0x10, 0x03, 0x12, 0x15, 0x0a, 0x11, 0x4c, 0x45, 0x47, 0x45, 0x4e, 0x44, 0x5f, 0x43, 0x4f, - 0x4c, 0x55, 0x4d, 0x4e, 0x5f, 0x41, 0x56, 0x47, 0x10, 0x04, 0x12, 0x16, 0x0a, 0x12, 0x4c, 0x45, - 0x47, 0x45, 0x4e, 0x44, 0x5f, 0x43, 0x4f, 0x4c, 0x55, 0x4d, 0x4e, 0x5f, 0x4c, 0x41, 0x53, 0x54, - 0x10, 0x05, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_rawDescData = file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_goTypes = []interface{}{ - (Legend_LegendColumn)(0), // 0: com.coralogixapis.dashboards.v1.ast.widgets.common.Legend.LegendColumn - (*Legend)(nil), // 1: com.coralogixapis.dashboards.v1.ast.widgets.common.Legend - (*wrapperspb.BoolValue)(nil), // 2: google.protobuf.BoolValue -} -var file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_depIdxs = []int32{ - 2, // 0: com.coralogixapis.dashboards.v1.ast.widgets.common.Legend.is_visible:type_name -> google.protobuf.BoolValue - 0, // 1: com.coralogixapis.dashboards.v1.ast.widgets.common.Legend.columns:type_name -> com.coralogixapis.dashboards.v1.ast.widgets.common.Legend.LegendColumn - 2, // [2:2] is the sub-list for method output_type - 2, // [2:2] is the sub-list for method input_type - 2, // [2:2] is the sub-list for extension type_name - 2, // [2:2] is the sub-list for extension extendee - 0, // [0:2] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_init() } -func file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_init() { - if File_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto != nil { - return - } - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Legend); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_rawDesc, - NumEnums: 1, - NumMessages: 1, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_depIdxs, - EnumInfos: file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_enumTypes, - MessageInfos: file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto = out.File - file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/line_chart.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/line_chart.pb.go deleted file mode 100644 index de4bc4c..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/line_chart.pb.go +++ /dev/null @@ -1,479 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/ast/widgets/line_chart.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type LineChart struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Query *LineChart_Query `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"` - Legend *Legend `protobuf:"bytes,2,opt,name=legend,proto3" json:"legend,omitempty"` - SeriesNameTemplate *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=series_name_template,json=seriesNameTemplate,proto3" json:"series_name_template,omitempty"` -} - -func (x *LineChart) Reset() { - *x = LineChart{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *LineChart) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*LineChart) ProtoMessage() {} - -func (x *LineChart) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use LineChart.ProtoReflect.Descriptor instead. -func (*LineChart) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_rawDescGZIP(), []int{0} -} - -func (x *LineChart) GetQuery() *LineChart_Query { - if x != nil { - return x.Query - } - return nil -} - -func (x *LineChart) GetLegend() *Legend { - if x != nil { - return x.Legend - } - return nil -} - -func (x *LineChart) GetSeriesNameTemplate() *wrapperspb.StringValue { - if x != nil { - return x.SeriesNameTemplate - } - return nil -} - -type LineChart_Query struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - // Types that are assignable to Value: - // *LineChart_Query_Logs - // *LineChart_Query_Metrics - Value isLineChart_Query_Value `protobuf_oneof:"value"` -} - -func (x *LineChart_Query) Reset() { - *x = LineChart_Query{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *LineChart_Query) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*LineChart_Query) ProtoMessage() {} - -func (x *LineChart_Query) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use LineChart_Query.ProtoReflect.Descriptor instead. -func (*LineChart_Query) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_rawDescGZIP(), []int{0, 0} -} - -func (m *LineChart_Query) GetValue() isLineChart_Query_Value { - if m != nil { - return m.Value - } - return nil -} - -func (x *LineChart_Query) GetLogs() *LineChart_LogsQuery { - if x, ok := x.GetValue().(*LineChart_Query_Logs); ok { - return x.Logs - } - return nil -} - -func (x *LineChart_Query) GetMetrics() *LineChart_MetricsQuery { - if x, ok := x.GetValue().(*LineChart_Query_Metrics); ok { - return x.Metrics - } - return nil -} - -type isLineChart_Query_Value interface { - isLineChart_Query_Value() -} - -type LineChart_Query_Logs struct { - Logs *LineChart_LogsQuery `protobuf:"bytes,1,opt,name=logs,proto3,oneof"` -} - -type LineChart_Query_Metrics struct { - Metrics *LineChart_MetricsQuery `protobuf:"bytes,2,opt,name=metrics,proto3,oneof"` -} - -func (*LineChart_Query_Logs) isLineChart_Query_Value() {} - -func (*LineChart_Query_Metrics) isLineChart_Query_Value() {} - -type LineChart_LogsQuery struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - LuceneQuery *LuceneQuery `protobuf:"bytes,1,opt,name=lucene_query,json=luceneQuery,proto3" json:"lucene_query,omitempty"` - GroupBy []*wrapperspb.StringValue `protobuf:"bytes,2,rep,name=group_by,json=groupBy,proto3" json:"group_by,omitempty"` - Aggregations []*LogsAggregation `protobuf:"bytes,3,rep,name=aggregations,proto3" json:"aggregations,omitempty"` -} - -func (x *LineChart_LogsQuery) Reset() { - *x = LineChart_LogsQuery{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_msgTypes[2] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *LineChart_LogsQuery) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*LineChart_LogsQuery) ProtoMessage() {} - -func (x *LineChart_LogsQuery) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_msgTypes[2] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use LineChart_LogsQuery.ProtoReflect.Descriptor instead. -func (*LineChart_LogsQuery) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_rawDescGZIP(), []int{0, 1} -} - -func (x *LineChart_LogsQuery) GetLuceneQuery() *LuceneQuery { - if x != nil { - return x.LuceneQuery - } - return nil -} - -func (x *LineChart_LogsQuery) GetGroupBy() []*wrapperspb.StringValue { - if x != nil { - return x.GroupBy - } - return nil -} - -func (x *LineChart_LogsQuery) GetAggregations() []*LogsAggregation { - if x != nil { - return x.Aggregations - } - return nil -} - -type LineChart_MetricsQuery struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - PromqlQuery *PromQlQuery `protobuf:"bytes,1,opt,name=promql_query,json=promqlQuery,proto3" json:"promql_query,omitempty"` -} - -func (x *LineChart_MetricsQuery) Reset() { - *x = LineChart_MetricsQuery{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_msgTypes[3] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *LineChart_MetricsQuery) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*LineChart_MetricsQuery) ProtoMessage() {} - -func (x *LineChart_MetricsQuery) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_msgTypes[3] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use LineChart_MetricsQuery.ProtoReflect.Descriptor instead. -func (*LineChart_MetricsQuery) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_rawDescGZIP(), []int{0, 2} -} - -func (x *LineChart_MetricsQuery) GetPromqlQuery() *PromQlQuery { - if x != nil { - return x.PromqlQuery - } - return nil -} - -var File_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_rawDesc = []byte{ - 0x0a, 0x3c, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x61, 0x73, 0x74, 0x2f, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x2f, 0x6c, 0x69, - 0x6e, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x2b, - 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, - 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, - 0x61, 0x73, 0x74, 0x2e, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x1a, 0x3f, 0x63, 0x6f, 0x6d, - 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, - 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x73, 0x74, - 0x2f, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, - 0x6c, 0x65, 0x67, 0x65, 0x6e, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x40, 0x63, 0x6f, - 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, - 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x73, - 0x74, 0x2f, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, - 0x2f, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3d, - 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, - 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, - 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6c, 0x6f, 0x67, 0x73, 0x5f, 0x61, 0x67, 0x67, 0x72, - 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x67, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, - 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xcb, 0x06, - 0x0a, 0x09, 0x4c, 0x69, 0x6e, 0x65, 0x43, 0x68, 0x61, 0x72, 0x74, 0x12, 0x52, 0x0a, 0x05, 0x71, - 0x75, 0x65, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x63, 0x6f, 0x6d, - 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, - 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, - 0x2e, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x2e, 0x4c, 0x69, 0x6e, 0x65, 0x43, 0x68, 0x61, - 0x72, 0x74, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x12, - 0x52, 0x0a, 0x06, 0x6c, 0x65, 0x67, 0x65, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x3a, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, - 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x2e, 0x63, 0x6f, - 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x65, 0x67, 0x65, 0x6e, 0x64, 0x52, 0x06, 0x6c, 0x65, 0x67, - 0x65, 0x6e, 0x64, 0x12, 0x4e, 0x0a, 0x14, 0x73, 0x65, 0x72, 0x69, 0x65, 0x73, 0x5f, 0x6e, 0x61, - 0x6d, 0x65, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, - 0x12, 0x73, 0x65, 0x72, 0x69, 0x65, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, - 0x61, 0x74, 0x65, 0x1a, 0xc9, 0x01, 0x0a, 0x05, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x56, 0x0a, - 0x04, 0x6c, 0x6f, 0x67, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x40, 0x2e, 0x63, 0x6f, - 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, - 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, - 0x74, 0x2e, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x2e, 0x4c, 0x69, 0x6e, 0x65, 0x43, 0x68, - 0x61, 0x72, 0x74, 0x2e, 0x4c, 0x6f, 0x67, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x48, 0x00, 0x52, - 0x04, 0x6c, 0x6f, 0x67, 0x73, 0x12, 0x5f, 0x0a, 0x07, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x43, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, - 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, - 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x77, 0x69, 0x64, - 0x67, 0x65, 0x74, 0x73, 0x2e, 0x4c, 0x69, 0x6e, 0x65, 0x43, 0x68, 0x61, 0x72, 0x74, 0x2e, 0x4d, - 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x48, 0x00, 0x52, 0x07, 0x6d, - 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x42, 0x07, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x1a, - 0x85, 0x02, 0x0a, 0x09, 0x4c, 0x6f, 0x67, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x62, 0x0a, - 0x0c, 0x6c, 0x75, 0x63, 0x65, 0x6e, 0x65, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x3f, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, - 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, - 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x75, 0x63, 0x65, 0x6e, 0x65, 0x51, - 0x75, 0x65, 0x72, 0x79, 0x52, 0x0b, 0x6c, 0x75, 0x63, 0x65, 0x6e, 0x65, 0x51, 0x75, 0x65, 0x72, - 0x79, 0x12, 0x37, 0x0a, 0x08, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x62, 0x79, 0x18, 0x02, 0x20, - 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, - 0x65, 0x52, 0x07, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x79, 0x12, 0x5b, 0x0a, 0x0c, 0x61, 0x67, - 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, - 0x32, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, - 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, - 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x67, 0x73, 0x41, 0x67, - 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x61, 0x67, 0x67, 0x72, 0x65, - 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x72, 0x0a, 0x0c, 0x4d, 0x65, 0x74, 0x72, 0x69, - 0x63, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x62, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6d, 0x71, - 0x6c, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3f, 0x2e, - 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, - 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, - 0x61, 0x73, 0x74, 0x2e, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, - 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x51, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x0b, - 0x70, 0x72, 0x6f, 0x6d, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x42, 0x04, 0x5a, 0x02, 0x2e, - 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_rawDescData = file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_goTypes = []interface{}{ - (*LineChart)(nil), // 0: com.coralogixapis.dashboards.v1.ast.widgets.LineChart - (*LineChart_Query)(nil), // 1: com.coralogixapis.dashboards.v1.ast.widgets.LineChart.Query - (*LineChart_LogsQuery)(nil), // 2: com.coralogixapis.dashboards.v1.ast.widgets.LineChart.LogsQuery - (*LineChart_MetricsQuery)(nil), // 3: com.coralogixapis.dashboards.v1.ast.widgets.LineChart.MetricsQuery - (*Legend)(nil), // 4: com.coralogixapis.dashboards.v1.ast.widgets.common.Legend - (*wrapperspb.StringValue)(nil), // 5: google.protobuf.StringValue - (*LuceneQuery)(nil), // 6: com.coralogixapis.dashboards.v1.ast.widgets.common.LuceneQuery - (*LogsAggregation)(nil), // 7: com.coralogixapis.dashboards.v1.common.LogsAggregation - (*PromQlQuery)(nil), // 8: com.coralogixapis.dashboards.v1.ast.widgets.common.PromQlQuery -} -var file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_depIdxs = []int32{ - 1, // 0: com.coralogixapis.dashboards.v1.ast.widgets.LineChart.query:type_name -> com.coralogixapis.dashboards.v1.ast.widgets.LineChart.Query - 4, // 1: com.coralogixapis.dashboards.v1.ast.widgets.LineChart.legend:type_name -> com.coralogixapis.dashboards.v1.ast.widgets.common.Legend - 5, // 2: com.coralogixapis.dashboards.v1.ast.widgets.LineChart.series_name_template:type_name -> google.protobuf.StringValue - 2, // 3: com.coralogixapis.dashboards.v1.ast.widgets.LineChart.Query.logs:type_name -> com.coralogixapis.dashboards.v1.ast.widgets.LineChart.LogsQuery - 3, // 4: com.coralogixapis.dashboards.v1.ast.widgets.LineChart.Query.metrics:type_name -> com.coralogixapis.dashboards.v1.ast.widgets.LineChart.MetricsQuery - 6, // 5: com.coralogixapis.dashboards.v1.ast.widgets.LineChart.LogsQuery.lucene_query:type_name -> com.coralogixapis.dashboards.v1.ast.widgets.common.LuceneQuery - 5, // 6: com.coralogixapis.dashboards.v1.ast.widgets.LineChart.LogsQuery.group_by:type_name -> google.protobuf.StringValue - 7, // 7: com.coralogixapis.dashboards.v1.ast.widgets.LineChart.LogsQuery.aggregations:type_name -> com.coralogixapis.dashboards.v1.common.LogsAggregation - 8, // 8: com.coralogixapis.dashboards.v1.ast.widgets.LineChart.MetricsQuery.promql_query:type_name -> com.coralogixapis.dashboards.v1.ast.widgets.common.PromQlQuery - 9, // [9:9] is the sub-list for method output_type - 9, // [9:9] is the sub-list for method input_type - 9, // [9:9] is the sub-list for extension type_name - 9, // [9:9] is the sub-list for extension extendee - 0, // [0:9] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_init() } -func file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_init() { - if File_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto != nil { - return - } - file_com_coralogixapis_dashboards_v1_ast_widgets_common_legend_proto_init() - file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_init() - file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_init() - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*LineChart); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*LineChart_Query); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*LineChart_LogsQuery); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*LineChart_MetricsQuery); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_msgTypes[1].OneofWrappers = []interface{}{ - (*LineChart_Query_Logs)(nil), - (*LineChart_Query_Metrics)(nil), - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_rawDesc, - NumEnums: 0, - NumMessages: 4, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_depIdxs, - MessageInfos: file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto = out.File - file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/log_severity_level.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/log_severity_level.pb.go deleted file mode 100644 index 940feaf..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/log_severity_level.pb.go +++ /dev/null @@ -1,160 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/common/log_severity_level.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type LogSeverityLevel int32 - -const ( - LogSeverityLevel_LOG_SEVERITY_LEVEL_UNSPECIFIED LogSeverityLevel = 0 - LogSeverityLevel_LOG_SEVERITY_LEVEL_DEBUG LogSeverityLevel = 1 - LogSeverityLevel_LOG_SEVERITY_LEVEL_VERBOSE LogSeverityLevel = 2 - LogSeverityLevel_LOG_SEVERITY_LEVEL_INFO LogSeverityLevel = 3 - LogSeverityLevel_LOG_SEVERITY_LEVEL_WARNING LogSeverityLevel = 4 - LogSeverityLevel_LOG_SEVERITY_LEVEL_ERROR LogSeverityLevel = 5 - LogSeverityLevel_LOG_SEVERITY_LEVEL_CRITICAL LogSeverityLevel = 6 -) - -// Enum value maps for LogSeverityLevel. -var ( - LogSeverityLevel_name = map[int32]string{ - 0: "LOG_SEVERITY_LEVEL_UNSPECIFIED", - 1: "LOG_SEVERITY_LEVEL_DEBUG", - 2: "LOG_SEVERITY_LEVEL_VERBOSE", - 3: "LOG_SEVERITY_LEVEL_INFO", - 4: "LOG_SEVERITY_LEVEL_WARNING", - 5: "LOG_SEVERITY_LEVEL_ERROR", - 6: "LOG_SEVERITY_LEVEL_CRITICAL", - } - LogSeverityLevel_value = map[string]int32{ - "LOG_SEVERITY_LEVEL_UNSPECIFIED": 0, - "LOG_SEVERITY_LEVEL_DEBUG": 1, - "LOG_SEVERITY_LEVEL_VERBOSE": 2, - "LOG_SEVERITY_LEVEL_INFO": 3, - "LOG_SEVERITY_LEVEL_WARNING": 4, - "LOG_SEVERITY_LEVEL_ERROR": 5, - "LOG_SEVERITY_LEVEL_CRITICAL": 6, - } -) - -func (x LogSeverityLevel) Enum() *LogSeverityLevel { - p := new(LogSeverityLevel) - *p = x - return p -} - -func (x LogSeverityLevel) String() string { - return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) -} - -func (LogSeverityLevel) Descriptor() protoreflect.EnumDescriptor { - return file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_enumTypes[0].Descriptor() -} - -func (LogSeverityLevel) Type() protoreflect.EnumType { - return &file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_enumTypes[0] -} - -func (x LogSeverityLevel) Number() protoreflect.EnumNumber { - return protoreflect.EnumNumber(x) -} - -// Deprecated: Use LogSeverityLevel.Descriptor instead. -func (LogSeverityLevel) EnumDescriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_rawDescGZIP(), []int{0} -} - -var File_com_coralogixapis_dashboards_v1_common_log_severity_level_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_rawDesc = []byte{ - 0x0a, 0x3f, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6c, 0x6f, 0x67, 0x5f, 0x73, 0x65, 0x76, - 0x65, 0x72, 0x69, 0x74, 0x79, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x12, 0x26, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, - 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, - 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2a, 0xf0, 0x01, 0x0a, 0x10, 0x4c, 0x6f, - 0x67, 0x53, 0x65, 0x76, 0x65, 0x72, 0x69, 0x74, 0x79, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x22, - 0x0a, 0x1e, 0x4c, 0x4f, 0x47, 0x5f, 0x53, 0x45, 0x56, 0x45, 0x52, 0x49, 0x54, 0x59, 0x5f, 0x4c, - 0x45, 0x56, 0x45, 0x4c, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, - 0x10, 0x00, 0x12, 0x1c, 0x0a, 0x18, 0x4c, 0x4f, 0x47, 0x5f, 0x53, 0x45, 0x56, 0x45, 0x52, 0x49, - 0x54, 0x59, 0x5f, 0x4c, 0x45, 0x56, 0x45, 0x4c, 0x5f, 0x44, 0x45, 0x42, 0x55, 0x47, 0x10, 0x01, - 0x12, 0x1e, 0x0a, 0x1a, 0x4c, 0x4f, 0x47, 0x5f, 0x53, 0x45, 0x56, 0x45, 0x52, 0x49, 0x54, 0x59, - 0x5f, 0x4c, 0x45, 0x56, 0x45, 0x4c, 0x5f, 0x56, 0x45, 0x52, 0x42, 0x4f, 0x53, 0x45, 0x10, 0x02, - 0x12, 0x1b, 0x0a, 0x17, 0x4c, 0x4f, 0x47, 0x5f, 0x53, 0x45, 0x56, 0x45, 0x52, 0x49, 0x54, 0x59, - 0x5f, 0x4c, 0x45, 0x56, 0x45, 0x4c, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x10, 0x03, 0x12, 0x1e, 0x0a, - 0x1a, 0x4c, 0x4f, 0x47, 0x5f, 0x53, 0x45, 0x56, 0x45, 0x52, 0x49, 0x54, 0x59, 0x5f, 0x4c, 0x45, - 0x56, 0x45, 0x4c, 0x5f, 0x57, 0x41, 0x52, 0x4e, 0x49, 0x4e, 0x47, 0x10, 0x04, 0x12, 0x1c, 0x0a, - 0x18, 0x4c, 0x4f, 0x47, 0x5f, 0x53, 0x45, 0x56, 0x45, 0x52, 0x49, 0x54, 0x59, 0x5f, 0x4c, 0x45, - 0x56, 0x45, 0x4c, 0x5f, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, 0x05, 0x12, 0x1f, 0x0a, 0x1b, 0x4c, - 0x4f, 0x47, 0x5f, 0x53, 0x45, 0x56, 0x45, 0x52, 0x49, 0x54, 0x59, 0x5f, 0x4c, 0x45, 0x56, 0x45, - 0x4c, 0x5f, 0x43, 0x52, 0x49, 0x54, 0x49, 0x43, 0x41, 0x4c, 0x10, 0x06, 0x42, 0x04, 0x5a, 0x02, - 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_rawDescData = file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_goTypes = []interface{}{ - (LogSeverityLevel)(0), // 0: com.coralogixapis.dashboards.v1.common.LogSeverityLevel -} -var file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_depIdxs = []int32{ - 0, // [0:0] is the sub-list for method output_type - 0, // [0:0] is the sub-list for method input_type - 0, // [0:0] is the sub-list for extension type_name - 0, // [0:0] is the sub-list for extension extendee - 0, // [0:0] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_init() } -func file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_init() { - if File_com_coralogixapis_dashboards_v1_common_log_severity_level_proto != nil { - return - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_rawDesc, - NumEnums: 1, - NumMessages: 0, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_depIdxs, - EnumInfos: file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_enumTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_common_log_severity_level_proto = out.File - file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/logs_aggregation.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/logs_aggregation.pb.go deleted file mode 100644 index bdd32e6..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/logs_aggregation.pb.go +++ /dev/null @@ -1,663 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/common/logs_aggregation.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type LogsAggregation struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - // Types that are assignable to Value: - // *LogsAggregation_Count_ - // *LogsAggregation_CountDistinct_ - // *LogsAggregation_Sum_ - // *LogsAggregation_Average_ - // *LogsAggregation_Min_ - // *LogsAggregation_Max_ - Value isLogsAggregation_Value `protobuf_oneof:"value"` -} - -func (x *LogsAggregation) Reset() { - *x = LogsAggregation{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *LogsAggregation) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*LogsAggregation) ProtoMessage() {} - -func (x *LogsAggregation) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use LogsAggregation.ProtoReflect.Descriptor instead. -func (*LogsAggregation) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDescGZIP(), []int{0} -} - -func (m *LogsAggregation) GetValue() isLogsAggregation_Value { - if m != nil { - return m.Value - } - return nil -} - -func (x *LogsAggregation) GetCount() *LogsAggregation_Count { - if x, ok := x.GetValue().(*LogsAggregation_Count_); ok { - return x.Count - } - return nil -} - -func (x *LogsAggregation) GetCountDistinct() *LogsAggregation_CountDistinct { - if x, ok := x.GetValue().(*LogsAggregation_CountDistinct_); ok { - return x.CountDistinct - } - return nil -} - -func (x *LogsAggregation) GetSum() *LogsAggregation_Sum { - if x, ok := x.GetValue().(*LogsAggregation_Sum_); ok { - return x.Sum - } - return nil -} - -func (x *LogsAggregation) GetAverage() *LogsAggregation_Average { - if x, ok := x.GetValue().(*LogsAggregation_Average_); ok { - return x.Average - } - return nil -} - -func (x *LogsAggregation) GetMin() *LogsAggregation_Min { - if x, ok := x.GetValue().(*LogsAggregation_Min_); ok { - return x.Min - } - return nil -} - -func (x *LogsAggregation) GetMax() *LogsAggregation_Max { - if x, ok := x.GetValue().(*LogsAggregation_Max_); ok { - return x.Max - } - return nil -} - -type isLogsAggregation_Value interface { - isLogsAggregation_Value() -} - -type LogsAggregation_Count_ struct { - Count *LogsAggregation_Count `protobuf:"bytes,1,opt,name=count,proto3,oneof"` -} - -type LogsAggregation_CountDistinct_ struct { - CountDistinct *LogsAggregation_CountDistinct `protobuf:"bytes,2,opt,name=count_distinct,json=countDistinct,proto3,oneof"` -} - -type LogsAggregation_Sum_ struct { - Sum *LogsAggregation_Sum `protobuf:"bytes,3,opt,name=sum,proto3,oneof"` -} - -type LogsAggregation_Average_ struct { - Average *LogsAggregation_Average `protobuf:"bytes,4,opt,name=average,proto3,oneof"` -} - -type LogsAggregation_Min_ struct { - Min *LogsAggregation_Min `protobuf:"bytes,5,opt,name=min,proto3,oneof"` -} - -type LogsAggregation_Max_ struct { - Max *LogsAggregation_Max `protobuf:"bytes,6,opt,name=max,proto3,oneof"` -} - -func (*LogsAggregation_Count_) isLogsAggregation_Value() {} - -func (*LogsAggregation_CountDistinct_) isLogsAggregation_Value() {} - -func (*LogsAggregation_Sum_) isLogsAggregation_Value() {} - -func (*LogsAggregation_Average_) isLogsAggregation_Value() {} - -func (*LogsAggregation_Min_) isLogsAggregation_Value() {} - -func (*LogsAggregation_Max_) isLogsAggregation_Value() {} - -type LogsAggregation_Count struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *LogsAggregation_Count) Reset() { - *x = LogsAggregation_Count{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *LogsAggregation_Count) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*LogsAggregation_Count) ProtoMessage() {} - -func (x *LogsAggregation_Count) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use LogsAggregation_Count.ProtoReflect.Descriptor instead. -func (*LogsAggregation_Count) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDescGZIP(), []int{0, 0} -} - -type LogsAggregation_CountDistinct struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Field *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"` -} - -func (x *LogsAggregation_CountDistinct) Reset() { - *x = LogsAggregation_CountDistinct{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[2] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *LogsAggregation_CountDistinct) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*LogsAggregation_CountDistinct) ProtoMessage() {} - -func (x *LogsAggregation_CountDistinct) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[2] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use LogsAggregation_CountDistinct.ProtoReflect.Descriptor instead. -func (*LogsAggregation_CountDistinct) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDescGZIP(), []int{0, 1} -} - -func (x *LogsAggregation_CountDistinct) GetField() *wrapperspb.StringValue { - if x != nil { - return x.Field - } - return nil -} - -type LogsAggregation_Sum struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Field *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"` -} - -func (x *LogsAggregation_Sum) Reset() { - *x = LogsAggregation_Sum{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[3] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *LogsAggregation_Sum) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*LogsAggregation_Sum) ProtoMessage() {} - -func (x *LogsAggregation_Sum) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[3] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use LogsAggregation_Sum.ProtoReflect.Descriptor instead. -func (*LogsAggregation_Sum) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDescGZIP(), []int{0, 2} -} - -func (x *LogsAggregation_Sum) GetField() *wrapperspb.StringValue { - if x != nil { - return x.Field - } - return nil -} - -type LogsAggregation_Average struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Field *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"` -} - -func (x *LogsAggregation_Average) Reset() { - *x = LogsAggregation_Average{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[4] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *LogsAggregation_Average) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*LogsAggregation_Average) ProtoMessage() {} - -func (x *LogsAggregation_Average) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[4] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use LogsAggregation_Average.ProtoReflect.Descriptor instead. -func (*LogsAggregation_Average) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDescGZIP(), []int{0, 3} -} - -func (x *LogsAggregation_Average) GetField() *wrapperspb.StringValue { - if x != nil { - return x.Field - } - return nil -} - -type LogsAggregation_Min struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Field *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"` -} - -func (x *LogsAggregation_Min) Reset() { - *x = LogsAggregation_Min{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[5] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *LogsAggregation_Min) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*LogsAggregation_Min) ProtoMessage() {} - -func (x *LogsAggregation_Min) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[5] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use LogsAggregation_Min.ProtoReflect.Descriptor instead. -func (*LogsAggregation_Min) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDescGZIP(), []int{0, 4} -} - -func (x *LogsAggregation_Min) GetField() *wrapperspb.StringValue { - if x != nil { - return x.Field - } - return nil -} - -type LogsAggregation_Max struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Field *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"` -} - -func (x *LogsAggregation_Max) Reset() { - *x = LogsAggregation_Max{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[6] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *LogsAggregation_Max) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*LogsAggregation_Max) ProtoMessage() {} - -func (x *LogsAggregation_Max) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[6] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use LogsAggregation_Max.ProtoReflect.Descriptor instead. -func (*LogsAggregation_Max) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDescGZIP(), []int{0, 5} -} - -func (x *LogsAggregation_Max) GetField() *wrapperspb.StringValue { - if x != nil { - return x.Field - } - return nil -} - -var File_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDesc = []byte{ - 0x0a, 0x3d, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6c, 0x6f, 0x67, 0x73, 0x5f, 0x61, 0x67, - 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, - 0x26, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, - 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, - 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, - 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xef, 0x06, 0x0a, 0x0f, 0x4c, 0x6f, 0x67, 0x73, - 0x41, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x55, 0x0a, 0x05, 0x63, - 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x63, 0x6f, 0x6d, - 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, - 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, - 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x67, 0x73, 0x41, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x05, 0x63, 0x6f, 0x75, - 0x6e, 0x74, 0x12, 0x6e, 0x0a, 0x0e, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x64, 0x69, 0x73, 0x74, - 0x69, 0x6e, 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x45, 0x2e, 0x63, 0x6f, 0x6d, - 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, - 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, - 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x67, 0x73, 0x41, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x44, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x63, - 0x74, 0x48, 0x00, 0x52, 0x0d, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x44, 0x69, 0x73, 0x74, 0x69, 0x6e, - 0x63, 0x74, 0x12, 0x4f, 0x0a, 0x03, 0x73, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x3b, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x67, 0x73, 0x41, 0x67, 0x67, - 0x72, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x75, 0x6d, 0x48, 0x00, 0x52, 0x03, - 0x73, 0x75, 0x6d, 0x12, 0x5b, 0x0a, 0x07, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x18, 0x04, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3f, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, - 0x67, 0x73, 0x41, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x76, - 0x65, 0x72, 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, 0x07, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, - 0x12, 0x4f, 0x0a, 0x03, 0x6d, 0x69, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3b, 0x2e, - 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, - 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, - 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x67, 0x73, 0x41, 0x67, 0x67, 0x72, 0x65, - 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4d, 0x69, 0x6e, 0x48, 0x00, 0x52, 0x03, 0x6d, 0x69, - 0x6e, 0x12, 0x4f, 0x0a, 0x03, 0x6d, 0x61, 0x78, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3b, - 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, - 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, - 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x67, 0x73, 0x41, 0x67, 0x67, 0x72, - 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x78, 0x48, 0x00, 0x52, 0x03, 0x6d, - 0x61, 0x78, 0x1a, 0x07, 0x0a, 0x05, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x1a, 0x43, 0x0a, 0x0d, 0x43, - 0x6f, 0x75, 0x6e, 0x74, 0x44, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x63, 0x74, 0x12, 0x32, 0x0a, 0x05, - 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, - 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, - 0x1a, 0x39, 0x0a, 0x03, 0x53, 0x75, 0x6d, 0x12, 0x32, 0x0a, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, - 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x1a, 0x3d, 0x0a, 0x07, 0x41, - 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x12, 0x32, 0x0a, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, - 0x6c, 0x75, 0x65, 0x52, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x1a, 0x39, 0x0a, 0x03, 0x4d, 0x69, - 0x6e, 0x12, 0x32, 0x0a, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, - 0x66, 0x69, 0x65, 0x6c, 0x64, 0x1a, 0x39, 0x0a, 0x03, 0x4d, 0x61, 0x78, 0x12, 0x32, 0x0a, 0x05, - 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, - 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, - 0x42, 0x07, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, 0x62, - 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDescData = file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes = make([]protoimpl.MessageInfo, 7) -var file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_goTypes = []interface{}{ - (*LogsAggregation)(nil), // 0: com.coralogixapis.dashboards.v1.common.LogsAggregation - (*LogsAggregation_Count)(nil), // 1: com.coralogixapis.dashboards.v1.common.LogsAggregation.Count - (*LogsAggregation_CountDistinct)(nil), // 2: com.coralogixapis.dashboards.v1.common.LogsAggregation.CountDistinct - (*LogsAggregation_Sum)(nil), // 3: com.coralogixapis.dashboards.v1.common.LogsAggregation.Sum - (*LogsAggregation_Average)(nil), // 4: com.coralogixapis.dashboards.v1.common.LogsAggregation.Average - (*LogsAggregation_Min)(nil), // 5: com.coralogixapis.dashboards.v1.common.LogsAggregation.Min - (*LogsAggregation_Max)(nil), // 6: com.coralogixapis.dashboards.v1.common.LogsAggregation.Max - (*wrapperspb.StringValue)(nil), // 7: google.protobuf.StringValue -} -var file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_depIdxs = []int32{ - 1, // 0: com.coralogixapis.dashboards.v1.common.LogsAggregation.count:type_name -> com.coralogixapis.dashboards.v1.common.LogsAggregation.Count - 2, // 1: com.coralogixapis.dashboards.v1.common.LogsAggregation.count_distinct:type_name -> com.coralogixapis.dashboards.v1.common.LogsAggregation.CountDistinct - 3, // 2: com.coralogixapis.dashboards.v1.common.LogsAggregation.sum:type_name -> com.coralogixapis.dashboards.v1.common.LogsAggregation.Sum - 4, // 3: com.coralogixapis.dashboards.v1.common.LogsAggregation.average:type_name -> com.coralogixapis.dashboards.v1.common.LogsAggregation.Average - 5, // 4: com.coralogixapis.dashboards.v1.common.LogsAggregation.min:type_name -> com.coralogixapis.dashboards.v1.common.LogsAggregation.Min - 6, // 5: com.coralogixapis.dashboards.v1.common.LogsAggregation.max:type_name -> com.coralogixapis.dashboards.v1.common.LogsAggregation.Max - 7, // 6: com.coralogixapis.dashboards.v1.common.LogsAggregation.CountDistinct.field:type_name -> google.protobuf.StringValue - 7, // 7: com.coralogixapis.dashboards.v1.common.LogsAggregation.Sum.field:type_name -> google.protobuf.StringValue - 7, // 8: com.coralogixapis.dashboards.v1.common.LogsAggregation.Average.field:type_name -> google.protobuf.StringValue - 7, // 9: com.coralogixapis.dashboards.v1.common.LogsAggregation.Min.field:type_name -> google.protobuf.StringValue - 7, // 10: com.coralogixapis.dashboards.v1.common.LogsAggregation.Max.field:type_name -> google.protobuf.StringValue - 11, // [11:11] is the sub-list for method output_type - 11, // [11:11] is the sub-list for method input_type - 11, // [11:11] is the sub-list for extension type_name - 11, // [11:11] is the sub-list for extension extendee - 0, // [0:11] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_init() } -func file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_init() { - if File_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto != nil { - return - } - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*LogsAggregation); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*LogsAggregation_Count); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*LogsAggregation_CountDistinct); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*LogsAggregation_Sum); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*LogsAggregation_Average); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*LogsAggregation_Min); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*LogsAggregation_Max); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes[0].OneofWrappers = []interface{}{ - (*LogsAggregation_Count_)(nil), - (*LogsAggregation_CountDistinct_)(nil), - (*LogsAggregation_Sum_)(nil), - (*LogsAggregation_Average_)(nil), - (*LogsAggregation_Min_)(nil), - (*LogsAggregation_Max_)(nil), - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDesc, - NumEnums: 0, - NumMessages: 7, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_depIdxs, - MessageInfos: file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto = out.File - file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/logs_data_source_service.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/logs_data_source_service.pb.go deleted file mode 100644 index 4c87e1b..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/logs_data_source_service.pb.go +++ /dev/null @@ -1,881 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/services/logs_data_source_service.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - durationpb "google.golang.org/protobuf/types/known/durationpb" - structpb "google.golang.org/protobuf/types/known/structpb" - timestamppb "google.golang.org/protobuf/types/known/timestamppb" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type SearchLogsTimeSeriesRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - TimeFrame *TimeFrame `protobuf:"bytes,1,opt,name=time_frame,json=timeFrame,proto3" json:"time_frame,omitempty"` - Interval *durationpb.Duration `protobuf:"bytes,2,opt,name=interval,proto3" json:"interval,omitempty"` - Filters []*SearchFilter `protobuf:"bytes,3,rep,name=filters,proto3" json:"filters,omitempty"` - GroupBy []*wrapperspb.StringValue `protobuf:"bytes,4,rep,name=group_by,json=groupBy,proto3" json:"group_by,omitempty"` - Aggregations []*LogsAggregation `protobuf:"bytes,5,rep,name=aggregations,proto3" json:"aggregations,omitempty"` - Limit *wrapperspb.Int32Value `protobuf:"bytes,6,opt,name=limit,proto3" json:"limit,omitempty"` - LuceneQuery *wrapperspb.StringValue `protobuf:"bytes,7,opt,name=lucene_query,json=luceneQuery,proto3" json:"lucene_query,omitempty"` -} - -func (x *SearchLogsTimeSeriesRequest) Reset() { - *x = SearchLogsTimeSeriesRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *SearchLogsTimeSeriesRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*SearchLogsTimeSeriesRequest) ProtoMessage() {} - -func (x *SearchLogsTimeSeriesRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use SearchLogsTimeSeriesRequest.ProtoReflect.Descriptor instead. -func (*SearchLogsTimeSeriesRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDescGZIP(), []int{0} -} - -func (x *SearchLogsTimeSeriesRequest) GetTimeFrame() *TimeFrame { - if x != nil { - return x.TimeFrame - } - return nil -} - -func (x *SearchLogsTimeSeriesRequest) GetInterval() *durationpb.Duration { - if x != nil { - return x.Interval - } - return nil -} - -func (x *SearchLogsTimeSeriesRequest) GetFilters() []*SearchFilter { - if x != nil { - return x.Filters - } - return nil -} - -func (x *SearchLogsTimeSeriesRequest) GetGroupBy() []*wrapperspb.StringValue { - if x != nil { - return x.GroupBy - } - return nil -} - -func (x *SearchLogsTimeSeriesRequest) GetAggregations() []*LogsAggregation { - if x != nil { - return x.Aggregations - } - return nil -} - -func (x *SearchLogsTimeSeriesRequest) GetLimit() *wrapperspb.Int32Value { - if x != nil { - return x.Limit - } - return nil -} - -func (x *SearchLogsTimeSeriesRequest) GetLuceneQuery() *wrapperspb.StringValue { - if x != nil { - return x.LuceneQuery - } - return nil -} - -type SearchLogsTimeSeriesResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - TimeSeries []*TimeSeries `protobuf:"bytes,1,rep,name=time_series,json=timeSeries,proto3" json:"time_series,omitempty"` -} - -func (x *SearchLogsTimeSeriesResponse) Reset() { - *x = SearchLogsTimeSeriesResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *SearchLogsTimeSeriesResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*SearchLogsTimeSeriesResponse) ProtoMessage() {} - -func (x *SearchLogsTimeSeriesResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use SearchLogsTimeSeriesResponse.ProtoReflect.Descriptor instead. -func (*SearchLogsTimeSeriesResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDescGZIP(), []int{1} -} - -func (x *SearchLogsTimeSeriesResponse) GetTimeSeries() []*TimeSeries { - if x != nil { - return x.TimeSeries - } - return nil -} - -type SearchLogsEventsRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - TimeFrame *TimeFrame `protobuf:"bytes,1,opt,name=time_frame,json=timeFrame,proto3" json:"time_frame,omitempty"` - Filters []*SearchFilter `protobuf:"bytes,2,rep,name=filters,proto3" json:"filters,omitempty"` - LuceneQuery *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=lucene_query,json=luceneQuery,proto3" json:"lucene_query,omitempty"` - OrderBy []*OrderingField `protobuf:"bytes,5,rep,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"` - Pagination *SearchLogsEventsRequest_Pagination `protobuf:"bytes,6,opt,name=pagination,proto3" json:"pagination,omitempty"` -} - -func (x *SearchLogsEventsRequest) Reset() { - *x = SearchLogsEventsRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[2] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *SearchLogsEventsRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*SearchLogsEventsRequest) ProtoMessage() {} - -func (x *SearchLogsEventsRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[2] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use SearchLogsEventsRequest.ProtoReflect.Descriptor instead. -func (*SearchLogsEventsRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDescGZIP(), []int{2} -} - -func (x *SearchLogsEventsRequest) GetTimeFrame() *TimeFrame { - if x != nil { - return x.TimeFrame - } - return nil -} - -func (x *SearchLogsEventsRequest) GetFilters() []*SearchFilter { - if x != nil { - return x.Filters - } - return nil -} - -func (x *SearchLogsEventsRequest) GetLuceneQuery() *wrapperspb.StringValue { - if x != nil { - return x.LuceneQuery - } - return nil -} - -func (x *SearchLogsEventsRequest) GetOrderBy() []*OrderingField { - if x != nil { - return x.OrderBy - } - return nil -} - -func (x *SearchLogsEventsRequest) GetPagination() *SearchLogsEventsRequest_Pagination { - if x != nil { - return x.Pagination - } - return nil -} - -type SearchLogsEventsResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Total *wrapperspb.Int64Value `protobuf:"bytes,1,opt,name=total,proto3" json:"total,omitempty"` - Events []*LogsEvent `protobuf:"bytes,2,rep,name=events,proto3" json:"events,omitempty"` -} - -func (x *SearchLogsEventsResponse) Reset() { - *x = SearchLogsEventsResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[3] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *SearchLogsEventsResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*SearchLogsEventsResponse) ProtoMessage() {} - -func (x *SearchLogsEventsResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[3] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use SearchLogsEventsResponse.ProtoReflect.Descriptor instead. -func (*SearchLogsEventsResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDescGZIP(), []int{3} -} - -func (x *SearchLogsEventsResponse) GetTotal() *wrapperspb.Int64Value { - if x != nil { - return x.Total - } - return nil -} - -func (x *SearchLogsEventsResponse) GetEvents() []*LogsEvent { - if x != nil { - return x.Events - } - return nil -} - -type LogsEvent struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - LogId *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=log_id,json=logId,proto3" json:"log_id,omitempty"` - Timestamp *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"` - Text *wrapperspb.StringValue `protobuf:"bytes,4,opt,name=text,proto3" json:"text,omitempty"` - Json *structpb.Struct `protobuf:"bytes,5,opt,name=json,proto3" json:"json,omitempty"` - LogsMetadata *LogsMetadata `protobuf:"bytes,6,opt,name=logs_metadata,json=logsMetadata,proto3" json:"logs_metadata,omitempty"` -} - -func (x *LogsEvent) Reset() { - *x = LogsEvent{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[4] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *LogsEvent) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*LogsEvent) ProtoMessage() {} - -func (x *LogsEvent) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[4] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use LogsEvent.ProtoReflect.Descriptor instead. -func (*LogsEvent) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDescGZIP(), []int{4} -} - -func (x *LogsEvent) GetLogId() *wrapperspb.StringValue { - if x != nil { - return x.LogId - } - return nil -} - -func (x *LogsEvent) GetTimestamp() *timestamppb.Timestamp { - if x != nil { - return x.Timestamp - } - return nil -} - -func (x *LogsEvent) GetText() *wrapperspb.StringValue { - if x != nil { - return x.Text - } - return nil -} - -func (x *LogsEvent) GetJson() *structpb.Struct { - if x != nil { - return x.Json - } - return nil -} - -func (x *LogsEvent) GetLogsMetadata() *LogsMetadata { - if x != nil { - return x.LogsMetadata - } - return nil -} - -type LogsMetadata struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - ApplicationName *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=application_name,json=applicationName,proto3" json:"application_name,omitempty"` - SubsystemName *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=subsystem_name,json=subsystemName,proto3" json:"subsystem_name,omitempty"` - Severity LogSeverityLevel `protobuf:"varint,3,opt,name=severity,proto3,enum=com.coralogixapis.dashboards.v1.common.LogSeverityLevel" json:"severity,omitempty"` -} - -func (x *LogsMetadata) Reset() { - *x = LogsMetadata{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[5] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *LogsMetadata) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*LogsMetadata) ProtoMessage() {} - -func (x *LogsMetadata) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[5] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use LogsMetadata.ProtoReflect.Descriptor instead. -func (*LogsMetadata) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDescGZIP(), []int{5} -} - -func (x *LogsMetadata) GetApplicationName() *wrapperspb.StringValue { - if x != nil { - return x.ApplicationName - } - return nil -} - -func (x *LogsMetadata) GetSubsystemName() *wrapperspb.StringValue { - if x != nil { - return x.SubsystemName - } - return nil -} - -func (x *LogsMetadata) GetSeverity() LogSeverityLevel { - if x != nil { - return x.Severity - } - return LogSeverityLevel_LOG_SEVERITY_LEVEL_UNSPECIFIED -} - -type SearchLogsEventsRequest_Pagination struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Offset *wrapperspb.Int32Value `protobuf:"bytes,1,opt,name=offset,proto3" json:"offset,omitempty"` - Limit *wrapperspb.Int32Value `protobuf:"bytes,2,opt,name=limit,proto3" json:"limit,omitempty"` -} - -func (x *SearchLogsEventsRequest_Pagination) Reset() { - *x = SearchLogsEventsRequest_Pagination{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[6] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *SearchLogsEventsRequest_Pagination) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*SearchLogsEventsRequest_Pagination) ProtoMessage() {} - -func (x *SearchLogsEventsRequest_Pagination) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[6] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use SearchLogsEventsRequest_Pagination.ProtoReflect.Descriptor instead. -func (*SearchLogsEventsRequest_Pagination) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDescGZIP(), []int{2, 0} -} - -func (x *SearchLogsEventsRequest_Pagination) GetOffset() *wrapperspb.Int32Value { - if x != nil { - return x.Offset - } - return nil -} - -func (x *SearchLogsEventsRequest_Pagination) GetLimit() *wrapperspb.Int32Value { - if x != nil { - return x.Limit - } - return nil -} - -var File_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDesc = []byte{ - 0x0a, 0x47, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x73, 0x5f, - 0x64, 0x61, 0x74, 0x61, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x28, 0x63, 0x6f, 0x6d, 0x2e, 0x63, - 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, - 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x1a, 0x2f, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3f, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, - 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6c, 0x6f, 0x67, - 0x5f, 0x73, 0x65, 0x76, 0x65, 0x72, 0x69, 0x74, 0x79, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3d, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6c, 0x6f, - 0x67, 0x73, 0x5f, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3b, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, - 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6f, 0x72, 0x64, - 0x65, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x1a, 0x3a, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, - 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, - 0x76, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, - 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x37, 0x63, - 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, - 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x63, - 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x66, 0x72, 0x61, 0x6d, 0x65, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x38, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, - 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, - 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x74, - 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, - 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, - 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, - 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, - 0x80, 0x04, 0x0a, 0x1b, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4c, 0x6f, 0x67, 0x73, 0x54, 0x69, - 0x6d, 0x65, 0x53, 0x65, 0x72, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, - 0x50, 0x0a, 0x0a, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, - 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x69, 0x6d, - 0x65, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x46, 0x72, 0x61, 0x6d, - 0x65, 0x12, 0x35, 0x0a, 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x08, - 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x12, 0x4e, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x74, - 0x65, 0x72, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, - 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, - 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, - 0x07, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x12, 0x37, 0x0a, 0x08, 0x67, 0x72, 0x6f, 0x75, - 0x70, 0x5f, 0x62, 0x79, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, - 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x42, - 0x79, 0x12, 0x5b, 0x0a, 0x0c, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, - 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, - 0x2e, 0x4c, 0x6f, 0x67, 0x73, 0x41, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x52, 0x0c, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x31, - 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, - 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, - 0x74, 0x12, 0x3f, 0x0a, 0x0c, 0x6c, 0x75, 0x63, 0x65, 0x6e, 0x65, 0x5f, 0x71, 0x75, 0x65, 0x72, - 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, - 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0b, 0x6c, 0x75, 0x63, 0x65, 0x6e, 0x65, 0x51, 0x75, 0x65, - 0x72, 0x79, 0x22, 0x73, 0x0a, 0x1c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4c, 0x6f, 0x67, 0x73, - 0x54, 0x69, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x12, 0x53, 0x0a, 0x0b, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x65, - 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, - 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, - 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x69, 0x65, 0x73, 0x52, 0x0a, 0x74, 0x69, 0x6d, - 0x65, 0x53, 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0xb8, 0x04, 0x0a, 0x17, 0x53, 0x65, 0x61, 0x72, - 0x63, 0x68, 0x4c, 0x6f, 0x67, 0x73, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x12, 0x50, 0x0a, 0x0a, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x66, 0x72, 0x61, 0x6d, - 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, - 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, - 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, - 0x46, 0x72, 0x61, 0x6d, 0x65, 0x12, 0x4e, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, - 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, - 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, - 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, - 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, 0x07, 0x66, 0x69, - 0x6c, 0x74, 0x65, 0x72, 0x73, 0x12, 0x3f, 0x0a, 0x0c, 0x6c, 0x75, 0x63, 0x65, 0x6e, 0x65, 0x5f, - 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, - 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0b, 0x6c, 0x75, 0x63, 0x65, 0x6e, - 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x50, 0x0a, 0x08, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, - 0x62, 0x79, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, - 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, - 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, - 0x6e, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, - 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x79, 0x12, 0x6c, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, - 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x4c, 0x2e, 0x63, - 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, - 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4c, 0x6f, - 0x67, 0x73, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, - 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, - 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x74, 0x0a, 0x0a, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x33, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, - 0x65, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x31, 0x0a, 0x05, 0x6c, 0x69, 0x6d, - 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x33, 0x32, - 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x4a, 0x04, 0x08, 0x04, - 0x10, 0x05, 0x22, 0x9a, 0x01, 0x0a, 0x18, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4c, 0x6f, 0x67, - 0x73, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, - 0x31, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, - 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, - 0x2e, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x74, 0x6f, 0x74, - 0x61, 0x6c, 0x12, 0x4b, 0x0a, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, - 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x6f, - 0x67, 0x73, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x22, - 0xbc, 0x02, 0x0a, 0x09, 0x4c, 0x6f, 0x67, 0x73, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x33, 0x0a, - 0x06, 0x6c, 0x6f, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, - 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x6c, 0x6f, 0x67, - 0x49, 0x64, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, - 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x30, 0x0a, 0x04, - 0x74, 0x65, 0x78, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, - 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x2b, - 0x0a, 0x04, 0x6a, 0x73, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x67, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, - 0x74, 0x72, 0x75, 0x63, 0x74, 0x52, 0x04, 0x6a, 0x73, 0x6f, 0x6e, 0x12, 0x5b, 0x0a, 0x0d, 0x6c, - 0x6f, 0x67, 0x73, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x06, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x6f, - 0x67, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x0c, 0x6c, 0x6f, 0x67, 0x73, - 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x4a, 0x04, 0x08, 0x03, 0x10, 0x04, 0x22, 0xf2, - 0x01, 0x0a, 0x0c, 0x4c, 0x6f, 0x67, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, - 0x47, 0x0a, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, - 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, - 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x43, 0x0a, 0x0e, 0x73, 0x75, 0x62, 0x73, - 0x79, 0x73, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0d, - 0x73, 0x75, 0x62, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x54, 0x0a, - 0x08, 0x73, 0x65, 0x76, 0x65, 0x72, 0x69, 0x74, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, - 0x38, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x67, 0x53, 0x65, 0x76, 0x65, - 0x72, 0x69, 0x74, 0x79, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x52, 0x08, 0x73, 0x65, 0x76, 0x65, 0x72, - 0x69, 0x74, 0x79, 0x32, 0x94, 0x03, 0x0a, 0x15, 0x4c, 0x6f, 0x67, 0x73, 0x44, 0x61, 0x74, 0x61, - 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xc4, 0x01, - 0x0a, 0x14, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4c, 0x6f, 0x67, 0x73, 0x54, 0x69, 0x6d, 0x65, - 0x53, 0x65, 0x72, 0x69, 0x65, 0x73, 0x12, 0x45, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, - 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, - 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4c, 0x6f, 0x67, 0x73, 0x54, 0x69, 0x6d, 0x65, - 0x53, 0x65, 0x72, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x46, 0x2e, - 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, - 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4c, - 0x6f, 0x67, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1d, 0xba, 0xb8, 0x02, 0x19, 0x0a, 0x17, 0x73, 0x65, 0x61, - 0x72, 0x63, 0x68, 0x20, 0x6c, 0x6f, 0x67, 0x73, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x73, 0x65, - 0x72, 0x69, 0x65, 0x73, 0x12, 0xb3, 0x01, 0x0a, 0x10, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4c, - 0x6f, 0x67, 0x73, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x41, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, - 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4c, 0x6f, 0x67, 0x73, 0x45, - 0x76, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x63, - 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, - 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4c, 0x6f, - 0x67, 0x73, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x22, 0x18, 0xba, 0xb8, 0x02, 0x14, 0x0a, 0x12, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x6c, - 0x6f, 0x67, 0x73, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, - 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDescData = file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes = make([]protoimpl.MessageInfo, 7) -var file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_goTypes = []interface{}{ - (*SearchLogsTimeSeriesRequest)(nil), // 0: com.coralogixapis.dashboards.v1.services.SearchLogsTimeSeriesRequest - (*SearchLogsTimeSeriesResponse)(nil), // 1: com.coralogixapis.dashboards.v1.services.SearchLogsTimeSeriesResponse - (*SearchLogsEventsRequest)(nil), // 2: com.coralogixapis.dashboards.v1.services.SearchLogsEventsRequest - (*SearchLogsEventsResponse)(nil), // 3: com.coralogixapis.dashboards.v1.services.SearchLogsEventsResponse - (*LogsEvent)(nil), // 4: com.coralogixapis.dashboards.v1.services.LogsEvent - (*LogsMetadata)(nil), // 5: com.coralogixapis.dashboards.v1.services.LogsMetadata - (*SearchLogsEventsRequest_Pagination)(nil), // 6: com.coralogixapis.dashboards.v1.services.SearchLogsEventsRequest.Pagination - (*TimeFrame)(nil), // 7: com.coralogixapis.dashboards.v1.common.TimeFrame - (*durationpb.Duration)(nil), // 8: google.protobuf.Duration - (*SearchFilter)(nil), // 9: com.coralogixapis.dashboards.v1.common.SearchFilter - (*wrapperspb.StringValue)(nil), // 10: google.protobuf.StringValue - (*LogsAggregation)(nil), // 11: com.coralogixapis.dashboards.v1.common.LogsAggregation - (*wrapperspb.Int32Value)(nil), // 12: google.protobuf.Int32Value - (*TimeSeries)(nil), // 13: com.coralogixapis.dashboards.v1.common.TimeSeries - (*OrderingField)(nil), // 14: com.coralogixapis.dashboards.v1.common.OrderingField - (*wrapperspb.Int64Value)(nil), // 15: google.protobuf.Int64Value - (*timestamppb.Timestamp)(nil), // 16: google.protobuf.Timestamp - (*structpb.Struct)(nil), // 17: google.protobuf.Struct - (LogSeverityLevel)(0), // 18: com.coralogixapis.dashboards.v1.common.LogSeverityLevel -} -var file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_depIdxs = []int32{ - 7, // 0: com.coralogixapis.dashboards.v1.services.SearchLogsTimeSeriesRequest.time_frame:type_name -> com.coralogixapis.dashboards.v1.common.TimeFrame - 8, // 1: com.coralogixapis.dashboards.v1.services.SearchLogsTimeSeriesRequest.interval:type_name -> google.protobuf.Duration - 9, // 2: com.coralogixapis.dashboards.v1.services.SearchLogsTimeSeriesRequest.filters:type_name -> com.coralogixapis.dashboards.v1.common.SearchFilter - 10, // 3: com.coralogixapis.dashboards.v1.services.SearchLogsTimeSeriesRequest.group_by:type_name -> google.protobuf.StringValue - 11, // 4: com.coralogixapis.dashboards.v1.services.SearchLogsTimeSeriesRequest.aggregations:type_name -> com.coralogixapis.dashboards.v1.common.LogsAggregation - 12, // 5: com.coralogixapis.dashboards.v1.services.SearchLogsTimeSeriesRequest.limit:type_name -> google.protobuf.Int32Value - 10, // 6: com.coralogixapis.dashboards.v1.services.SearchLogsTimeSeriesRequest.lucene_query:type_name -> google.protobuf.StringValue - 13, // 7: com.coralogixapis.dashboards.v1.services.SearchLogsTimeSeriesResponse.time_series:type_name -> com.coralogixapis.dashboards.v1.common.TimeSeries - 7, // 8: com.coralogixapis.dashboards.v1.services.SearchLogsEventsRequest.time_frame:type_name -> com.coralogixapis.dashboards.v1.common.TimeFrame - 9, // 9: com.coralogixapis.dashboards.v1.services.SearchLogsEventsRequest.filters:type_name -> com.coralogixapis.dashboards.v1.common.SearchFilter - 10, // 10: com.coralogixapis.dashboards.v1.services.SearchLogsEventsRequest.lucene_query:type_name -> google.protobuf.StringValue - 14, // 11: com.coralogixapis.dashboards.v1.services.SearchLogsEventsRequest.order_by:type_name -> com.coralogixapis.dashboards.v1.common.OrderingField - 6, // 12: com.coralogixapis.dashboards.v1.services.SearchLogsEventsRequest.pagination:type_name -> com.coralogixapis.dashboards.v1.services.SearchLogsEventsRequest.Pagination - 15, // 13: com.coralogixapis.dashboards.v1.services.SearchLogsEventsResponse.total:type_name -> google.protobuf.Int64Value - 4, // 14: com.coralogixapis.dashboards.v1.services.SearchLogsEventsResponse.events:type_name -> com.coralogixapis.dashboards.v1.services.LogsEvent - 10, // 15: com.coralogixapis.dashboards.v1.services.LogsEvent.log_id:type_name -> google.protobuf.StringValue - 16, // 16: com.coralogixapis.dashboards.v1.services.LogsEvent.timestamp:type_name -> google.protobuf.Timestamp - 10, // 17: com.coralogixapis.dashboards.v1.services.LogsEvent.text:type_name -> google.protobuf.StringValue - 17, // 18: com.coralogixapis.dashboards.v1.services.LogsEvent.json:type_name -> google.protobuf.Struct - 5, // 19: com.coralogixapis.dashboards.v1.services.LogsEvent.logs_metadata:type_name -> com.coralogixapis.dashboards.v1.services.LogsMetadata - 10, // 20: com.coralogixapis.dashboards.v1.services.LogsMetadata.application_name:type_name -> google.protobuf.StringValue - 10, // 21: com.coralogixapis.dashboards.v1.services.LogsMetadata.subsystem_name:type_name -> google.protobuf.StringValue - 18, // 22: com.coralogixapis.dashboards.v1.services.LogsMetadata.severity:type_name -> com.coralogixapis.dashboards.v1.common.LogSeverityLevel - 12, // 23: com.coralogixapis.dashboards.v1.services.SearchLogsEventsRequest.Pagination.offset:type_name -> google.protobuf.Int32Value - 12, // 24: com.coralogixapis.dashboards.v1.services.SearchLogsEventsRequest.Pagination.limit:type_name -> google.protobuf.Int32Value - 0, // 25: com.coralogixapis.dashboards.v1.services.LogsDataSourceService.SearchLogsTimeSeries:input_type -> com.coralogixapis.dashboards.v1.services.SearchLogsTimeSeriesRequest - 2, // 26: com.coralogixapis.dashboards.v1.services.LogsDataSourceService.SearchLogsEvents:input_type -> com.coralogixapis.dashboards.v1.services.SearchLogsEventsRequest - 1, // 27: com.coralogixapis.dashboards.v1.services.LogsDataSourceService.SearchLogsTimeSeries:output_type -> com.coralogixapis.dashboards.v1.services.SearchLogsTimeSeriesResponse - 3, // 28: com.coralogixapis.dashboards.v1.services.LogsDataSourceService.SearchLogsEvents:output_type -> com.coralogixapis.dashboards.v1.services.SearchLogsEventsResponse - 27, // [27:29] is the sub-list for method output_type - 25, // [25:27] is the sub-list for method input_type - 25, // [25:25] is the sub-list for extension type_name - 25, // [25:25] is the sub-list for extension extendee - 0, // [0:25] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_init() } -func file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_init() { - if File_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto != nil { - return - } - file_com_coralogixapis_dashboards_v1_audit_log_proto_init() - file_com_coralogixapis_dashboards_v1_common_log_severity_level_proto_init() - file_com_coralogixapis_dashboards_v1_common_logs_aggregation_proto_init() - file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_init() - file_com_coralogixapis_dashboards_v1_common_search_filter_proto_init() - file_com_coralogixapis_dashboards_v1_common_time_frame_proto_init() - file_com_coralogixapis_dashboards_v1_common_time_series_proto_init() - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SearchLogsTimeSeriesRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SearchLogsTimeSeriesResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SearchLogsEventsRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SearchLogsEventsResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*LogsEvent); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*LogsMetadata); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SearchLogsEventsRequest_Pagination); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDesc, - NumEnums: 0, - NumMessages: 7, - NumExtensions: 0, - NumServices: 1, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_depIdxs, - MessageInfos: file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto = out.File - file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_services_logs_data_source_service_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/logs_data_source_service_grpc.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/logs_data_source_service_grpc.pb.go deleted file mode 100644 index 855e8ee..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/logs_data_source_service_grpc.pb.go +++ /dev/null @@ -1,142 +0,0 @@ -// Code generated by protoc-gen-go-grpc. DO NOT EDIT. -// versions: -// - protoc-gen-go-grpc v1.2.0 -// - protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/services/logs_data_source_service.proto - -package v1 - -import ( - context "context" - - grpc "google.golang.org/grpc" - codes "google.golang.org/grpc/codes" - status "google.golang.org/grpc/status" -) - -// This is a compile-time assertion to ensure that this generated file -// is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 - -// LogsDataSourceServiceClient is the client API for LogsDataSourceService service. -// -// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. -type LogsDataSourceServiceClient interface { - SearchLogsTimeSeries(ctx context.Context, in *SearchLogsTimeSeriesRequest, opts ...grpc.CallOption) (*SearchLogsTimeSeriesResponse, error) - SearchLogsEvents(ctx context.Context, in *SearchLogsEventsRequest, opts ...grpc.CallOption) (*SearchLogsEventsResponse, error) -} - -type logsDataSourceServiceClient struct { - cc grpc.ClientConnInterface -} - -func NewLogsDataSourceServiceClient(cc grpc.ClientConnInterface) LogsDataSourceServiceClient { - return &logsDataSourceServiceClient{cc} -} - -func (c *logsDataSourceServiceClient) SearchLogsTimeSeries(ctx context.Context, in *SearchLogsTimeSeriesRequest, opts ...grpc.CallOption) (*SearchLogsTimeSeriesResponse, error) { - out := new(SearchLogsTimeSeriesResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.dashboards.v1.services.LogsDataSourceService/SearchLogsTimeSeries", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *logsDataSourceServiceClient) SearchLogsEvents(ctx context.Context, in *SearchLogsEventsRequest, opts ...grpc.CallOption) (*SearchLogsEventsResponse, error) { - out := new(SearchLogsEventsResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.dashboards.v1.services.LogsDataSourceService/SearchLogsEvents", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -// LogsDataSourceServiceServer is the server API for LogsDataSourceService service. -// All implementations must embed UnimplementedLogsDataSourceServiceServer -// for forward compatibility -type LogsDataSourceServiceServer interface { - SearchLogsTimeSeries(context.Context, *SearchLogsTimeSeriesRequest) (*SearchLogsTimeSeriesResponse, error) - SearchLogsEvents(context.Context, *SearchLogsEventsRequest) (*SearchLogsEventsResponse, error) - mustEmbedUnimplementedLogsDataSourceServiceServer() -} - -// UnimplementedLogsDataSourceServiceServer must be embedded to have forward compatible implementations. -type UnimplementedLogsDataSourceServiceServer struct { -} - -func (UnimplementedLogsDataSourceServiceServer) SearchLogsTimeSeries(context.Context, *SearchLogsTimeSeriesRequest) (*SearchLogsTimeSeriesResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method SearchLogsTimeSeries not implemented") -} -func (UnimplementedLogsDataSourceServiceServer) SearchLogsEvents(context.Context, *SearchLogsEventsRequest) (*SearchLogsEventsResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method SearchLogsEvents not implemented") -} -func (UnimplementedLogsDataSourceServiceServer) mustEmbedUnimplementedLogsDataSourceServiceServer() {} - -// UnsafeLogsDataSourceServiceServer may be embedded to opt out of forward compatibility for this service. -// Use of this interface is not recommended, as added methods to LogsDataSourceServiceServer will -// result in compilation errors. -type UnsafeLogsDataSourceServiceServer interface { - mustEmbedUnimplementedLogsDataSourceServiceServer() -} - -func RegisterLogsDataSourceServiceServer(s grpc.ServiceRegistrar, srv LogsDataSourceServiceServer) { - s.RegisterService(&LogsDataSourceService_ServiceDesc, srv) -} - -func _LogsDataSourceService_SearchLogsTimeSeries_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(SearchLogsTimeSeriesRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(LogsDataSourceServiceServer).SearchLogsTimeSeries(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.dashboards.v1.services.LogsDataSourceService/SearchLogsTimeSeries", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(LogsDataSourceServiceServer).SearchLogsTimeSeries(ctx, req.(*SearchLogsTimeSeriesRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _LogsDataSourceService_SearchLogsEvents_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(SearchLogsEventsRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(LogsDataSourceServiceServer).SearchLogsEvents(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.dashboards.v1.services.LogsDataSourceService/SearchLogsEvents", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(LogsDataSourceServiceServer).SearchLogsEvents(ctx, req.(*SearchLogsEventsRequest)) - } - return interceptor(ctx, in, info, handler) -} - -// LogsDataSourceService_ServiceDesc is the grpc.ServiceDesc for LogsDataSourceService service. -// It's only intended for direct use with grpc.RegisterService, -// and not to be introspected or modified (even as a copy) -var LogsDataSourceService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "com.coralogixapis.dashboards.v1.services.LogsDataSourceService", - HandlerType: (*LogsDataSourceServiceServer)(nil), - Methods: []grpc.MethodDesc{ - { - MethodName: "SearchLogsTimeSeries", - Handler: _LogsDataSourceService_SearchLogsTimeSeries_Handler, - }, - { - MethodName: "SearchLogsEvents", - Handler: _LogsDataSourceService_SearchLogsEvents_Handler, - }, - }, - Streams: []grpc.StreamDesc{}, - Metadata: "com/coralogixapis/dashboards/v1/services/logs_data_source_service.proto", -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/metrics_data_source_service.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/metrics_data_source_service.pb.go deleted file mode 100644 index 144b93c..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/metrics_data_source_service.pb.go +++ /dev/null @@ -1,313 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/services/metrics_data_source_service.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - durationpb "google.golang.org/protobuf/types/known/durationpb" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type SearchMetricsTimeSeriesRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - TimeFrame *TimeFrame `protobuf:"bytes,1,opt,name=time_frame,json=timeFrame,proto3" json:"time_frame,omitempty"` - Interval *durationpb.Duration `protobuf:"bytes,2,opt,name=interval,proto3" json:"interval,omitempty"` - PromqlQuery *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=promql_query,json=promqlQuery,proto3" json:"promql_query,omitempty"` - Limit *wrapperspb.Int32Value `protobuf:"bytes,4,opt,name=limit,proto3" json:"limit,omitempty"` -} - -func (x *SearchMetricsTimeSeriesRequest) Reset() { - *x = SearchMetricsTimeSeriesRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *SearchMetricsTimeSeriesRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*SearchMetricsTimeSeriesRequest) ProtoMessage() {} - -func (x *SearchMetricsTimeSeriesRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use SearchMetricsTimeSeriesRequest.ProtoReflect.Descriptor instead. -func (*SearchMetricsTimeSeriesRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_rawDescGZIP(), []int{0} -} - -func (x *SearchMetricsTimeSeriesRequest) GetTimeFrame() *TimeFrame { - if x != nil { - return x.TimeFrame - } - return nil -} - -func (x *SearchMetricsTimeSeriesRequest) GetInterval() *durationpb.Duration { - if x != nil { - return x.Interval - } - return nil -} - -func (x *SearchMetricsTimeSeriesRequest) GetPromqlQuery() *wrapperspb.StringValue { - if x != nil { - return x.PromqlQuery - } - return nil -} - -func (x *SearchMetricsTimeSeriesRequest) GetLimit() *wrapperspb.Int32Value { - if x != nil { - return x.Limit - } - return nil -} - -type SearchMetricsTimeSeriesResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - TimeSeries []*TimeSeries `protobuf:"bytes,1,rep,name=time_series,json=timeSeries,proto3" json:"time_series,omitempty"` - IsLimitExceeded bool `protobuf:"varint,2,opt,name=is_limit_exceeded,json=isLimitExceeded,proto3" json:"is_limit_exceeded,omitempty"` -} - -func (x *SearchMetricsTimeSeriesResponse) Reset() { - *x = SearchMetricsTimeSeriesResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *SearchMetricsTimeSeriesResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*SearchMetricsTimeSeriesResponse) ProtoMessage() {} - -func (x *SearchMetricsTimeSeriesResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use SearchMetricsTimeSeriesResponse.ProtoReflect.Descriptor instead. -func (*SearchMetricsTimeSeriesResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_rawDescGZIP(), []int{1} -} - -func (x *SearchMetricsTimeSeriesResponse) GetTimeSeries() []*TimeSeries { - if x != nil { - return x.TimeSeries - } - return nil -} - -func (x *SearchMetricsTimeSeriesResponse) GetIsLimitExceeded() bool { - if x != nil { - return x.IsLimitExceeded - } - return false -} - -var File_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_rawDesc = []byte{ - 0x0a, 0x4a, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x6d, 0x65, 0x74, 0x72, 0x69, - 0x63, 0x73, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x28, 0x63, 0x6f, - 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, - 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, - 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x2f, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, - 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, - 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x74, 0x5f, 0x6c, 0x6f, - 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x37, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, - 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, - 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, - 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x1a, 0x38, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x65, - 0x72, 0x69, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x64, 0x75, 0x72, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, - 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x9d, 0x02, 0x0a, 0x1e, 0x53, - 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x54, 0x69, 0x6d, 0x65, - 0x53, 0x65, 0x72, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x50, 0x0a, - 0x0a, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, - 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, - 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x46, - 0x72, 0x61, 0x6d, 0x65, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x12, - 0x35, 0x0a, 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x19, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x08, 0x69, 0x6e, - 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x12, 0x3f, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6d, 0x71, 0x6c, - 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, - 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x6d, - 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x31, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, - 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, - 0x6c, 0x75, 0x65, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0xa2, 0x01, 0x0a, 0x1f, 0x53, - 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x54, 0x69, 0x6d, 0x65, - 0x53, 0x65, 0x72, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x53, - 0x0a, 0x0b, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, - 0x03, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, - 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x69, 0x6d, - 0x65, 0x53, 0x65, 0x72, 0x69, 0x65, 0x73, 0x52, 0x0a, 0x74, 0x69, 0x6d, 0x65, 0x53, 0x65, 0x72, - 0x69, 0x65, 0x73, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, - 0x65, 0x78, 0x63, 0x65, 0x65, 0x64, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, - 0x69, 0x73, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x45, 0x78, 0x63, 0x65, 0x65, 0x64, 0x65, 0x64, 0x32, - 0xfd, 0x01, 0x0a, 0x18, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x44, 0x61, 0x74, 0x61, 0x53, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xe0, 0x01, 0x0a, - 0x17, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x54, 0x69, - 0x6d, 0x65, 0x53, 0x65, 0x72, 0x69, 0x65, 0x73, 0x12, 0x48, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, - 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, - 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, - 0x73, 0x54, 0x69, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x1a, 0x49, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, - 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x53, - 0x65, 0x72, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x30, 0xba, - 0xb8, 0x02, 0x2c, 0x0a, 0x2a, 0x66, 0x65, 0x74, 0x63, 0x68, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x20, - 0x73, 0x65, 0x72, 0x69, 0x65, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x6d, 0x65, 0x74, 0x72, - 0x69, 0x63, 0x73, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, - 0x04, 0x5a, 0x02, 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_rawDescData = file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_goTypes = []interface{}{ - (*SearchMetricsTimeSeriesRequest)(nil), // 0: com.coralogixapis.dashboards.v1.services.SearchMetricsTimeSeriesRequest - (*SearchMetricsTimeSeriesResponse)(nil), // 1: com.coralogixapis.dashboards.v1.services.SearchMetricsTimeSeriesResponse - (*TimeFrame)(nil), // 2: com.coralogixapis.dashboards.v1.common.TimeFrame - (*durationpb.Duration)(nil), // 3: google.protobuf.Duration - (*wrapperspb.StringValue)(nil), // 4: google.protobuf.StringValue - (*wrapperspb.Int32Value)(nil), // 5: google.protobuf.Int32Value - (*TimeSeries)(nil), // 6: com.coralogixapis.dashboards.v1.common.TimeSeries -} -var file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_depIdxs = []int32{ - 2, // 0: com.coralogixapis.dashboards.v1.services.SearchMetricsTimeSeriesRequest.time_frame:type_name -> com.coralogixapis.dashboards.v1.common.TimeFrame - 3, // 1: com.coralogixapis.dashboards.v1.services.SearchMetricsTimeSeriesRequest.interval:type_name -> google.protobuf.Duration - 4, // 2: com.coralogixapis.dashboards.v1.services.SearchMetricsTimeSeriesRequest.promql_query:type_name -> google.protobuf.StringValue - 5, // 3: com.coralogixapis.dashboards.v1.services.SearchMetricsTimeSeriesRequest.limit:type_name -> google.protobuf.Int32Value - 6, // 4: com.coralogixapis.dashboards.v1.services.SearchMetricsTimeSeriesResponse.time_series:type_name -> com.coralogixapis.dashboards.v1.common.TimeSeries - 0, // 5: com.coralogixapis.dashboards.v1.services.MetricsDataSourceService.SearchMetricsTimeSeries:input_type -> com.coralogixapis.dashboards.v1.services.SearchMetricsTimeSeriesRequest - 1, // 6: com.coralogixapis.dashboards.v1.services.MetricsDataSourceService.SearchMetricsTimeSeries:output_type -> com.coralogixapis.dashboards.v1.services.SearchMetricsTimeSeriesResponse - 6, // [6:7] is the sub-list for method output_type - 5, // [5:6] is the sub-list for method input_type - 5, // [5:5] is the sub-list for extension type_name - 5, // [5:5] is the sub-list for extension extendee - 0, // [0:5] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_init() } -func file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_init() { - if File_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto != nil { - return - } - file_com_coralogixapis_dashboards_v1_audit_log_proto_init() - file_com_coralogixapis_dashboards_v1_common_time_frame_proto_init() - file_com_coralogixapis_dashboards_v1_common_time_series_proto_init() - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SearchMetricsTimeSeriesRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SearchMetricsTimeSeriesResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_rawDesc, - NumEnums: 0, - NumMessages: 2, - NumExtensions: 0, - NumServices: 1, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_depIdxs, - MessageInfos: file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto = out.File - file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_services_metrics_data_source_service_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/metrics_data_source_service_grpc.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/metrics_data_source_service_grpc.pb.go deleted file mode 100644 index b140f2d..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/metrics_data_source_service_grpc.pb.go +++ /dev/null @@ -1,107 +0,0 @@ -// Code generated by protoc-gen-go-grpc. DO NOT EDIT. -// versions: -// - protoc-gen-go-grpc v1.2.0 -// - protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/services/metrics_data_source_service.proto - -package v1 - -import ( - context "context" - - grpc "google.golang.org/grpc" - codes "google.golang.org/grpc/codes" - status "google.golang.org/grpc/status" -) - -// This is a compile-time assertion to ensure that this generated file -// is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 - -// MetricsDataSourceServiceClient is the client API for MetricsDataSourceService service. -// -// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. -type MetricsDataSourceServiceClient interface { - SearchMetricsTimeSeries(ctx context.Context, in *SearchMetricsTimeSeriesRequest, opts ...grpc.CallOption) (*SearchMetricsTimeSeriesResponse, error) -} - -type metricsDataSourceServiceClient struct { - cc grpc.ClientConnInterface -} - -func NewMetricsDataSourceServiceClient(cc grpc.ClientConnInterface) MetricsDataSourceServiceClient { - return &metricsDataSourceServiceClient{cc} -} - -func (c *metricsDataSourceServiceClient) SearchMetricsTimeSeries(ctx context.Context, in *SearchMetricsTimeSeriesRequest, opts ...grpc.CallOption) (*SearchMetricsTimeSeriesResponse, error) { - out := new(SearchMetricsTimeSeriesResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.dashboards.v1.services.MetricsDataSourceService/SearchMetricsTimeSeries", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -// MetricsDataSourceServiceServer is the server API for MetricsDataSourceService service. -// All implementations must embed UnimplementedMetricsDataSourceServiceServer -// for forward compatibility -type MetricsDataSourceServiceServer interface { - SearchMetricsTimeSeries(context.Context, *SearchMetricsTimeSeriesRequest) (*SearchMetricsTimeSeriesResponse, error) - mustEmbedUnimplementedMetricsDataSourceServiceServer() -} - -// UnimplementedMetricsDataSourceServiceServer must be embedded to have forward compatible implementations. -type UnimplementedMetricsDataSourceServiceServer struct { -} - -func (UnimplementedMetricsDataSourceServiceServer) SearchMetricsTimeSeries(context.Context, *SearchMetricsTimeSeriesRequest) (*SearchMetricsTimeSeriesResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method SearchMetricsTimeSeries not implemented") -} -func (UnimplementedMetricsDataSourceServiceServer) mustEmbedUnimplementedMetricsDataSourceServiceServer() { -} - -// UnsafeMetricsDataSourceServiceServer may be embedded to opt out of forward compatibility for this service. -// Use of this interface is not recommended, as added methods to MetricsDataSourceServiceServer will -// result in compilation errors. -type UnsafeMetricsDataSourceServiceServer interface { - mustEmbedUnimplementedMetricsDataSourceServiceServer() -} - -func RegisterMetricsDataSourceServiceServer(s grpc.ServiceRegistrar, srv MetricsDataSourceServiceServer) { - s.RegisterService(&MetricsDataSourceService_ServiceDesc, srv) -} - -func _MetricsDataSourceService_SearchMetricsTimeSeries_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(SearchMetricsTimeSeriesRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(MetricsDataSourceServiceServer).SearchMetricsTimeSeries(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.dashboards.v1.services.MetricsDataSourceService/SearchMetricsTimeSeries", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(MetricsDataSourceServiceServer).SearchMetricsTimeSeries(ctx, req.(*SearchMetricsTimeSeriesRequest)) - } - return interceptor(ctx, in, info, handler) -} - -// MetricsDataSourceService_ServiceDesc is the grpc.ServiceDesc for MetricsDataSourceService service. -// It's only intended for direct use with grpc.RegisterService, -// and not to be introspected or modified (even as a copy) -var MetricsDataSourceService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "com.coralogixapis.dashboards.v1.services.MetricsDataSourceService", - HandlerType: (*MetricsDataSourceServiceServer)(nil), - Methods: []grpc.MethodDesc{ - { - MethodName: "SearchMetricsTimeSeries", - Handler: _MetricsDataSourceService_SearchMetricsTimeSeries_Handler, - }, - }, - Streams: []grpc.StreamDesc{}, - Metadata: "com/coralogixapis/dashboards/v1/services/metrics_data_source_service.proto", -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/order_direction.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/order_direction.pb.go deleted file mode 100644 index 192d570..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/order_direction.pb.go +++ /dev/null @@ -1,139 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/common/order_direction.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type OrderDirection int32 - -const ( - OrderDirection_ORDER_DIRECTION_UNSPECIFIED OrderDirection = 0 - OrderDirection_ORDER_DIRECTION_ASC OrderDirection = 1 - OrderDirection_ORDER_DIRECTION_DESC OrderDirection = 2 -) - -// Enum value maps for OrderDirection. -var ( - OrderDirection_name = map[int32]string{ - 0: "ORDER_DIRECTION_UNSPECIFIED", - 1: "ORDER_DIRECTION_ASC", - 2: "ORDER_DIRECTION_DESC", - } - OrderDirection_value = map[string]int32{ - "ORDER_DIRECTION_UNSPECIFIED": 0, - "ORDER_DIRECTION_ASC": 1, - "ORDER_DIRECTION_DESC": 2, - } -) - -func (x OrderDirection) Enum() *OrderDirection { - p := new(OrderDirection) - *p = x - return p -} - -func (x OrderDirection) String() string { - return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) -} - -func (OrderDirection) Descriptor() protoreflect.EnumDescriptor { - return file_com_coralogixapis_dashboards_v1_common_order_direction_proto_enumTypes[0].Descriptor() -} - -func (OrderDirection) Type() protoreflect.EnumType { - return &file_com_coralogixapis_dashboards_v1_common_order_direction_proto_enumTypes[0] -} - -func (x OrderDirection) Number() protoreflect.EnumNumber { - return protoreflect.EnumNumber(x) -} - -// Deprecated: Use OrderDirection.Descriptor instead. -func (OrderDirection) EnumDescriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_common_order_direction_proto_rawDescGZIP(), []int{0} -} - -var File_com_coralogixapis_dashboards_v1_common_order_direction_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_common_order_direction_proto_rawDesc = []byte{ - 0x0a, 0x3c, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x64, - 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x26, - 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, - 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, - 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2a, 0x64, 0x0a, 0x0e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, - 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x1b, 0x4f, 0x52, 0x44, 0x45, - 0x52, 0x5f, 0x44, 0x49, 0x52, 0x45, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x55, 0x4e, 0x53, 0x50, - 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x17, 0x0a, 0x13, 0x4f, 0x52, 0x44, - 0x45, 0x52, 0x5f, 0x44, 0x49, 0x52, 0x45, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x41, 0x53, 0x43, - 0x10, 0x01, 0x12, 0x18, 0x0a, 0x14, 0x4f, 0x52, 0x44, 0x45, 0x52, 0x5f, 0x44, 0x49, 0x52, 0x45, - 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x44, 0x45, 0x53, 0x43, 0x10, 0x02, 0x42, 0x04, 0x5a, 0x02, - 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_common_order_direction_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_common_order_direction_proto_rawDescData = file_com_coralogixapis_dashboards_v1_common_order_direction_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_common_order_direction_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_common_order_direction_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_common_order_direction_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_common_order_direction_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_common_order_direction_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_common_order_direction_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_com_coralogixapis_dashboards_v1_common_order_direction_proto_goTypes = []interface{}{ - (OrderDirection)(0), // 0: com.coralogixapis.dashboards.v1.common.OrderDirection -} -var file_com_coralogixapis_dashboards_v1_common_order_direction_proto_depIdxs = []int32{ - 0, // [0:0] is the sub-list for method output_type - 0, // [0:0] is the sub-list for method input_type - 0, // [0:0] is the sub-list for extension type_name - 0, // [0:0] is the sub-list for extension extendee - 0, // [0:0] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_common_order_direction_proto_init() } -func file_com_coralogixapis_dashboards_v1_common_order_direction_proto_init() { - if File_com_coralogixapis_dashboards_v1_common_order_direction_proto != nil { - return - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_common_order_direction_proto_rawDesc, - NumEnums: 1, - NumMessages: 0, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_common_order_direction_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_common_order_direction_proto_depIdxs, - EnumInfos: file_com_coralogixapis_dashboards_v1_common_order_direction_proto_enumTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_common_order_direction_proto = out.File - file_com_coralogixapis_dashboards_v1_common_order_direction_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_common_order_direction_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_common_order_direction_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/ordering_field.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/ordering_field.pb.go deleted file mode 100644 index 6cec334..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/ordering_field.pb.go +++ /dev/null @@ -1,175 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/common/ordering_field.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type OrderingField struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Field *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"` - OrderDirection OrderDirection `protobuf:"varint,2,opt,name=order_direction,json=orderDirection,proto3,enum=com.coralogixapis.dashboards.v1.common.OrderDirection" json:"order_direction,omitempty"` -} - -func (x *OrderingField) Reset() { - *x = OrderingField{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *OrderingField) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*OrderingField) ProtoMessage() {} - -func (x *OrderingField) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use OrderingField.ProtoReflect.Descriptor instead. -func (*OrderingField) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_rawDescGZIP(), []int{0} -} - -func (x *OrderingField) GetField() *wrapperspb.StringValue { - if x != nil { - return x.Field - } - return nil -} - -func (x *OrderingField) GetOrderDirection() OrderDirection { - if x != nil { - return x.OrderDirection - } - return OrderDirection_ORDER_DIRECTION_UNSPECIFIED -} - -var File_com_coralogixapis_dashboards_v1_common_ordering_field_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_rawDesc = []byte{ - 0x0a, 0x3b, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, - 0x67, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x26, 0x63, - 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, - 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, - 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x3c, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6f, 0x72, - 0x64, 0x65, 0x72, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x22, 0xa4, 0x01, 0x0a, 0x0d, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, - 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x32, 0x0a, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, - 0x75, 0x65, 0x52, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x5f, 0x0a, 0x0f, 0x6f, 0x72, 0x64, - 0x65, 0x72, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x0e, 0x32, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4f, 0x72, 0x64, 0x65, - 0x72, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, 0x6f, 0x72, 0x64, 0x65, - 0x72, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, - 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_rawDescData = file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_goTypes = []interface{}{ - (*OrderingField)(nil), // 0: com.coralogixapis.dashboards.v1.common.OrderingField - (*wrapperspb.StringValue)(nil), // 1: google.protobuf.StringValue - (OrderDirection)(0), // 2: com.coralogixapis.dashboards.v1.common.OrderDirection -} -var file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_depIdxs = []int32{ - 1, // 0: com.coralogixapis.dashboards.v1.common.OrderingField.field:type_name -> google.protobuf.StringValue - 2, // 1: com.coralogixapis.dashboards.v1.common.OrderingField.order_direction:type_name -> com.coralogixapis.dashboards.v1.common.OrderDirection - 2, // [2:2] is the sub-list for method output_type - 2, // [2:2] is the sub-list for method input_type - 2, // [2:2] is the sub-list for extension type_name - 2, // [2:2] is the sub-list for extension extendee - 0, // [0:2] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_init() } -func file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_init() { - if File_com_coralogixapis_dashboards_v1_common_ordering_field_proto != nil { - return - } - file_com_coralogixapis_dashboards_v1_common_order_direction_proto_init() - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*OrderingField); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_rawDesc, - NumEnums: 0, - NumMessages: 1, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_depIdxs, - MessageInfos: file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_common_ordering_field_proto = out.File - file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_common_ordering_field_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/queries.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/queries.pb.go deleted file mode 100644 index 919bab2..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/queries.pb.go +++ /dev/null @@ -1,220 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/ast/widgets/common/queries.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type PromQlQuery struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Value *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"` -} - -func (x *PromQlQuery) Reset() { - *x = PromQlQuery{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *PromQlQuery) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*PromQlQuery) ProtoMessage() {} - -func (x *PromQlQuery) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use PromQlQuery.ProtoReflect.Descriptor instead. -func (*PromQlQuery) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_rawDescGZIP(), []int{0} -} - -func (x *PromQlQuery) GetValue() *wrapperspb.StringValue { - if x != nil { - return x.Value - } - return nil -} - -type LuceneQuery struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Value *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"` -} - -func (x *LuceneQuery) Reset() { - *x = LuceneQuery{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *LuceneQuery) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*LuceneQuery) ProtoMessage() {} - -func (x *LuceneQuery) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use LuceneQuery.ProtoReflect.Descriptor instead. -func (*LuceneQuery) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_rawDescGZIP(), []int{1} -} - -func (x *LuceneQuery) GetValue() *wrapperspb.StringValue { - if x != nil { - return x.Value - } - return nil -} - -var File_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_rawDesc = []byte{ - 0x0a, 0x40, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x61, 0x73, 0x74, 0x2f, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x2f, 0x63, 0x6f, - 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x12, 0x32, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, - 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, - 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x2e, - 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x41, 0x0a, 0x0b, 0x50, 0x72, 0x6f, 0x6d, 0x51, 0x6c, - 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x32, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, - 0x75, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x41, 0x0a, 0x0b, 0x4c, 0x75, 0x63, - 0x65, 0x6e, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x32, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, - 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, - 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x04, 0x5a, 0x02, - 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_rawDescData = file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_goTypes = []interface{}{ - (*PromQlQuery)(nil), // 0: com.coralogixapis.dashboards.v1.ast.widgets.common.PromQlQuery - (*LuceneQuery)(nil), // 1: com.coralogixapis.dashboards.v1.ast.widgets.common.LuceneQuery - (*wrapperspb.StringValue)(nil), // 2: google.protobuf.StringValue -} -var file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_depIdxs = []int32{ - 2, // 0: com.coralogixapis.dashboards.v1.ast.widgets.common.PromQlQuery.value:type_name -> google.protobuf.StringValue - 2, // 1: com.coralogixapis.dashboards.v1.ast.widgets.common.LuceneQuery.value:type_name -> google.protobuf.StringValue - 2, // [2:2] is the sub-list for method output_type - 2, // [2:2] is the sub-list for method input_type - 2, // [2:2] is the sub-list for extension type_name - 2, // [2:2] is the sub-list for extension extendee - 0, // [0:2] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_init() } -func file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_init() { - if File_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto != nil { - return - } - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PromQlQuery); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*LuceneQuery); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_rawDesc, - NumEnums: 0, - NumMessages: 2, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_depIdxs, - MessageInfos: file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto = out.File - file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_ast_widgets_common_queries_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/search_filter.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/search_filter.pb.go deleted file mode 100644 index 063fa83..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/search_filter.pb.go +++ /dev/null @@ -1,166 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/common/search_filter.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type SearchFilter struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Name *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` - Values []*wrapperspb.StringValue `protobuf:"bytes,2,rep,name=values,proto3" json:"values,omitempty"` -} - -func (x *SearchFilter) Reset() { - *x = SearchFilter{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_common_search_filter_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *SearchFilter) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*SearchFilter) ProtoMessage() {} - -func (x *SearchFilter) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_common_search_filter_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use SearchFilter.ProtoReflect.Descriptor instead. -func (*SearchFilter) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_common_search_filter_proto_rawDescGZIP(), []int{0} -} - -func (x *SearchFilter) GetName() *wrapperspb.StringValue { - if x != nil { - return x.Name - } - return nil -} - -func (x *SearchFilter) GetValues() []*wrapperspb.StringValue { - if x != nil { - return x.Values - } - return nil -} - -var File_com_coralogixapis_dashboards_v1_common_search_filter_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_common_search_filter_proto_rawDesc = []byte{ - 0x0a, 0x3a, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, - 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x26, 0x63, 0x6f, - 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, - 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, - 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x76, 0x0a, 0x0c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x69, - 0x6c, 0x74, 0x65, 0x72, 0x12, 0x30, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, - 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x34, 0x0a, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, - 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, - 0x61, 0x6c, 0x75, 0x65, 0x52, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x42, 0x04, 0x5a, 0x02, - 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_common_search_filter_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_common_search_filter_proto_rawDescData = file_com_coralogixapis_dashboards_v1_common_search_filter_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_common_search_filter_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_common_search_filter_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_common_search_filter_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_common_search_filter_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_common_search_filter_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_common_search_filter_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_com_coralogixapis_dashboards_v1_common_search_filter_proto_goTypes = []interface{}{ - (*SearchFilter)(nil), // 0: com.coralogixapis.dashboards.v1.common.SearchFilter - (*wrapperspb.StringValue)(nil), // 1: google.protobuf.StringValue -} -var file_com_coralogixapis_dashboards_v1_common_search_filter_proto_depIdxs = []int32{ - 1, // 0: com.coralogixapis.dashboards.v1.common.SearchFilter.name:type_name -> google.protobuf.StringValue - 1, // 1: com.coralogixapis.dashboards.v1.common.SearchFilter.values:type_name -> google.protobuf.StringValue - 2, // [2:2] is the sub-list for method output_type - 2, // [2:2] is the sub-list for method input_type - 2, // [2:2] is the sub-list for extension type_name - 2, // [2:2] is the sub-list for extension extendee - 0, // [0:2] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_common_search_filter_proto_init() } -func file_com_coralogixapis_dashboards_v1_common_search_filter_proto_init() { - if File_com_coralogixapis_dashboards_v1_common_search_filter_proto != nil { - return - } - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_common_search_filter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SearchFilter); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_common_search_filter_proto_rawDesc, - NumEnums: 0, - NumMessages: 1, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_common_search_filter_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_common_search_filter_proto_depIdxs, - MessageInfos: file_com_coralogixapis_dashboards_v1_common_search_filter_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_common_search_filter_proto = out.File - file_com_coralogixapis_dashboards_v1_common_search_filter_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_common_search_filter_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_common_search_filter_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/time_frame.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/time_frame.pb.go deleted file mode 100644 index 562f798..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/time_frame.pb.go +++ /dev/null @@ -1,165 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/common/time_frame.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - timestamppb "google.golang.org/protobuf/types/known/timestamppb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type TimeFrame struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - From *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=from,proto3" json:"from,omitempty"` - To *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=to,proto3" json:"to,omitempty"` -} - -func (x *TimeFrame) Reset() { - *x = TimeFrame{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_common_time_frame_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *TimeFrame) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*TimeFrame) ProtoMessage() {} - -func (x *TimeFrame) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_common_time_frame_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use TimeFrame.ProtoReflect.Descriptor instead. -func (*TimeFrame) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_common_time_frame_proto_rawDescGZIP(), []int{0} -} - -func (x *TimeFrame) GetFrom() *timestamppb.Timestamp { - if x != nil { - return x.From - } - return nil -} - -func (x *TimeFrame) GetTo() *timestamppb.Timestamp { - if x != nil { - return x.To - } - return nil -} - -var File_com_coralogixapis_dashboards_v1_common_time_frame_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_common_time_frame_proto_rawDesc = []byte{ - 0x0a, 0x37, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x66, 0x72, - 0x61, 0x6d, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x26, 0x63, 0x6f, 0x6d, 0x2e, 0x63, - 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, - 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, - 0x6e, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x22, 0x67, 0x0a, 0x09, 0x54, 0x69, 0x6d, 0x65, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x12, - 0x2e, 0x0a, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, - 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x12, - 0x2a, 0x0a, 0x02, 0x74, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, - 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x02, 0x74, 0x6f, 0x42, 0x04, 0x5a, 0x02, 0x2e, - 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_common_time_frame_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_common_time_frame_proto_rawDescData = file_com_coralogixapis_dashboards_v1_common_time_frame_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_common_time_frame_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_common_time_frame_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_common_time_frame_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_common_time_frame_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_common_time_frame_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_common_time_frame_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_com_coralogixapis_dashboards_v1_common_time_frame_proto_goTypes = []interface{}{ - (*TimeFrame)(nil), // 0: com.coralogixapis.dashboards.v1.common.TimeFrame - (*timestamppb.Timestamp)(nil), // 1: google.protobuf.Timestamp -} -var file_com_coralogixapis_dashboards_v1_common_time_frame_proto_depIdxs = []int32{ - 1, // 0: com.coralogixapis.dashboards.v1.common.TimeFrame.from:type_name -> google.protobuf.Timestamp - 1, // 1: com.coralogixapis.dashboards.v1.common.TimeFrame.to:type_name -> google.protobuf.Timestamp - 2, // [2:2] is the sub-list for method output_type - 2, // [2:2] is the sub-list for method input_type - 2, // [2:2] is the sub-list for extension type_name - 2, // [2:2] is the sub-list for extension extendee - 0, // [0:2] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_common_time_frame_proto_init() } -func file_com_coralogixapis_dashboards_v1_common_time_frame_proto_init() { - if File_com_coralogixapis_dashboards_v1_common_time_frame_proto != nil { - return - } - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_common_time_frame_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TimeFrame); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_common_time_frame_proto_rawDesc, - NumEnums: 0, - NumMessages: 1, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_common_time_frame_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_common_time_frame_proto_depIdxs, - MessageInfos: file_com_coralogixapis_dashboards_v1_common_time_frame_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_common_time_frame_proto = out.File - file_com_coralogixapis_dashboards_v1_common_time_frame_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_common_time_frame_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_common_time_frame_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/time_series.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/time_series.pb.go deleted file mode 100644 index a247a61..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/time_series.pb.go +++ /dev/null @@ -1,269 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/common/time_series.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - timestamppb "google.golang.org/protobuf/types/known/timestamppb" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type TimeSeries struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Name *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` - Values []*DataPoint `protobuf:"bytes,2,rep,name=values,proto3" json:"values,omitempty"` - Labels map[string]string `protobuf:"bytes,3,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` -} - -func (x *TimeSeries) Reset() { - *x = TimeSeries{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_common_time_series_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *TimeSeries) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*TimeSeries) ProtoMessage() {} - -func (x *TimeSeries) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_common_time_series_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use TimeSeries.ProtoReflect.Descriptor instead. -func (*TimeSeries) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_common_time_series_proto_rawDescGZIP(), []int{0} -} - -func (x *TimeSeries) GetName() *wrapperspb.StringValue { - if x != nil { - return x.Name - } - return nil -} - -func (x *TimeSeries) GetValues() []*DataPoint { - if x != nil { - return x.Values - } - return nil -} - -func (x *TimeSeries) GetLabels() map[string]string { - if x != nil { - return x.Labels - } - return nil -} - -type DataPoint struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Timestamp *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"` - Value *wrapperspb.DoubleValue `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` -} - -func (x *DataPoint) Reset() { - *x = DataPoint{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_common_time_series_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *DataPoint) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*DataPoint) ProtoMessage() {} - -func (x *DataPoint) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_common_time_series_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use DataPoint.ProtoReflect.Descriptor instead. -func (*DataPoint) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_common_time_series_proto_rawDescGZIP(), []int{1} -} - -func (x *DataPoint) GetTimestamp() *timestamppb.Timestamp { - if x != nil { - return x.Timestamp - } - return nil -} - -func (x *DataPoint) GetValue() *wrapperspb.DoubleValue { - if x != nil { - return x.Value - } - return nil -} - -var File_com_coralogixapis_dashboards_v1_common_time_series_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_common_time_series_proto_rawDesc = []byte{ - 0x0a, 0x38, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x65, - 0x72, 0x69, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x26, 0x63, 0x6f, 0x6d, 0x2e, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, - 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, - 0x6f, 0x6e, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x22, 0x9c, 0x02, 0x0a, 0x0a, 0x54, 0x69, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x69, - 0x65, 0x73, 0x12, 0x30, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x04, - 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x49, 0x0a, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x02, - 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x61, - 0x74, 0x61, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, - 0x56, 0x0a, 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, - 0x3e, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x53, 0x65, 0x72, - 0x69, 0x65, 0x73, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, - 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x1a, 0x39, 0x0a, 0x0b, 0x4c, 0x61, 0x62, 0x65, 0x6c, - 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, - 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, - 0x38, 0x01, 0x22, 0x79, 0x0a, 0x09, 0x44, 0x61, 0x74, 0x61, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x12, - 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, - 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x32, 0x0a, 0x05, 0x76, 0x61, 0x6c, - 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x6f, 0x75, 0x62, 0x6c, - 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x04, 0x5a, - 0x02, 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_common_time_series_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_common_time_series_proto_rawDescData = file_com_coralogixapis_dashboards_v1_common_time_series_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_common_time_series_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_common_time_series_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_common_time_series_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_common_time_series_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_common_time_series_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_common_time_series_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_com_coralogixapis_dashboards_v1_common_time_series_proto_goTypes = []interface{}{ - (*TimeSeries)(nil), // 0: com.coralogixapis.dashboards.v1.common.TimeSeries - (*DataPoint)(nil), // 1: com.coralogixapis.dashboards.v1.common.DataPoint - nil, // 2: com.coralogixapis.dashboards.v1.common.TimeSeries.LabelsEntry - (*wrapperspb.StringValue)(nil), // 3: google.protobuf.StringValue - (*timestamppb.Timestamp)(nil), // 4: google.protobuf.Timestamp - (*wrapperspb.DoubleValue)(nil), // 5: google.protobuf.DoubleValue -} -var file_com_coralogixapis_dashboards_v1_common_time_series_proto_depIdxs = []int32{ - 3, // 0: com.coralogixapis.dashboards.v1.common.TimeSeries.name:type_name -> google.protobuf.StringValue - 1, // 1: com.coralogixapis.dashboards.v1.common.TimeSeries.values:type_name -> com.coralogixapis.dashboards.v1.common.DataPoint - 2, // 2: com.coralogixapis.dashboards.v1.common.TimeSeries.labels:type_name -> com.coralogixapis.dashboards.v1.common.TimeSeries.LabelsEntry - 4, // 3: com.coralogixapis.dashboards.v1.common.DataPoint.timestamp:type_name -> google.protobuf.Timestamp - 5, // 4: com.coralogixapis.dashboards.v1.common.DataPoint.value:type_name -> google.protobuf.DoubleValue - 5, // [5:5] is the sub-list for method output_type - 5, // [5:5] is the sub-list for method input_type - 5, // [5:5] is the sub-list for extension type_name - 5, // [5:5] is the sub-list for extension extendee - 0, // [0:5] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_common_time_series_proto_init() } -func file_com_coralogixapis_dashboards_v1_common_time_series_proto_init() { - if File_com_coralogixapis_dashboards_v1_common_time_series_proto != nil { - return - } - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_common_time_series_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TimeSeries); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_common_time_series_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DataPoint); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_common_time_series_proto_rawDesc, - NumEnums: 0, - NumMessages: 3, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_common_time_series_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_common_time_series_proto_depIdxs, - MessageInfos: file_com_coralogixapis_dashboards_v1_common_time_series_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_common_time_series_proto = out.File - file_com_coralogixapis_dashboards_v1_common_time_series_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_common_time_series_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_common_time_series_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/types.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/types.pb.go deleted file mode 100644 index 201e4f4..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/types.pb.go +++ /dev/null @@ -1,145 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/types.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type UUID struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"` -} - -func (x *UUID) Reset() { - *x = UUID{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_types_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *UUID) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*UUID) ProtoMessage() {} - -func (x *UUID) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_types_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use UUID.ProtoReflect.Descriptor instead. -func (*UUID) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_types_proto_rawDescGZIP(), []int{0} -} - -func (x *UUID) GetValue() string { - if x != nil { - return x.Value - } - return "" -} - -var File_com_coralogixapis_dashboards_v1_types_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_types_proto_rawDesc = []byte{ - 0x0a, 0x2b, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x63, - 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, - 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x22, 0x1c, - 0x0a, 0x04, 0x55, 0x55, 0x49, 0x44, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x04, 0x5a, 0x02, - 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_types_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_types_proto_rawDescData = file_com_coralogixapis_dashboards_v1_types_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_types_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_types_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_types_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_types_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_types_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_types_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_com_coralogixapis_dashboards_v1_types_proto_goTypes = []interface{}{ - (*UUID)(nil), // 0: com.coralogixapis.dashboards.v1.UUID -} -var file_com_coralogixapis_dashboards_v1_types_proto_depIdxs = []int32{ - 0, // [0:0] is the sub-list for method output_type - 0, // [0:0] is the sub-list for method input_type - 0, // [0:0] is the sub-list for extension type_name - 0, // [0:0] is the sub-list for extension extendee - 0, // [0:0] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_types_proto_init() } -func file_com_coralogixapis_dashboards_v1_types_proto_init() { - if File_com_coralogixapis_dashboards_v1_types_proto != nil { - return - } - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_types_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UUID); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_types_proto_rawDesc, - NumEnums: 0, - NumMessages: 1, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_types_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_types_proto_depIdxs, - MessageInfos: file_com_coralogixapis_dashboards_v1_types_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_types_proto = out.File - file_com_coralogixapis_dashboards_v1_types_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_types_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_types_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/variable.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/variable.pb.go deleted file mode 100644 index 8a9de74..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/variable.pb.go +++ /dev/null @@ -1,768 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/ast/variable.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type Variable struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Name *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` - Definition *Variable_Definition `protobuf:"bytes,2,opt,name=definition,proto3" json:"definition,omitempty"` -} - -func (x *Variable) Reset() { - *x = Variable{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *Variable) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*Variable) ProtoMessage() {} - -func (x *Variable) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use Variable.ProtoReflect.Descriptor instead. -func (*Variable) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDescGZIP(), []int{0} -} - -func (x *Variable) GetName() *wrapperspb.StringValue { - if x != nil { - return x.Name - } - return nil -} - -func (x *Variable) GetDefinition() *Variable_Definition { - if x != nil { - return x.Definition - } - return nil -} - -type Constant struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Value *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"` -} - -func (x *Constant) Reset() { - *x = Constant{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *Constant) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*Constant) ProtoMessage() {} - -func (x *Constant) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use Constant.ProtoReflect.Descriptor instead. -func (*Constant) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDescGZIP(), []int{1} -} - -func (x *Constant) GetValue() *wrapperspb.StringValue { - if x != nil { - return x.Value - } - return nil -} - -type MultiSelect struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Selected []*wrapperspb.StringValue `protobuf:"bytes,1,rep,name=selected,proto3" json:"selected,omitempty"` - Source *MultiSelect_Source `protobuf:"bytes,2,opt,name=source,proto3" json:"source,omitempty"` -} - -func (x *MultiSelect) Reset() { - *x = MultiSelect{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[2] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *MultiSelect) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*MultiSelect) ProtoMessage() {} - -func (x *MultiSelect) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[2] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use MultiSelect.ProtoReflect.Descriptor instead. -func (*MultiSelect) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDescGZIP(), []int{2} -} - -func (x *MultiSelect) GetSelected() []*wrapperspb.StringValue { - if x != nil { - return x.Selected - } - return nil -} - -func (x *MultiSelect) GetSource() *MultiSelect_Source { - if x != nil { - return x.Source - } - return nil -} - -type Variable_Definition struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - // Types that are assignable to Value: - // *Variable_Definition_Constant - // *Variable_Definition_MultiSelect - Value isVariable_Definition_Value `protobuf_oneof:"value"` -} - -func (x *Variable_Definition) Reset() { - *x = Variable_Definition{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[3] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *Variable_Definition) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*Variable_Definition) ProtoMessage() {} - -func (x *Variable_Definition) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[3] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use Variable_Definition.ProtoReflect.Descriptor instead. -func (*Variable_Definition) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDescGZIP(), []int{0, 0} -} - -func (m *Variable_Definition) GetValue() isVariable_Definition_Value { - if m != nil { - return m.Value - } - return nil -} - -func (x *Variable_Definition) GetConstant() *Constant { - if x, ok := x.GetValue().(*Variable_Definition_Constant); ok { - return x.Constant - } - return nil -} - -func (x *Variable_Definition) GetMultiSelect() *MultiSelect { - if x, ok := x.GetValue().(*Variable_Definition_MultiSelect); ok { - return x.MultiSelect - } - return nil -} - -type isVariable_Definition_Value interface { - isVariable_Definition_Value() -} - -type Variable_Definition_Constant struct { - Constant *Constant `protobuf:"bytes,1,opt,name=constant,proto3,oneof"` -} - -type Variable_Definition_MultiSelect struct { - MultiSelect *MultiSelect `protobuf:"bytes,2,opt,name=multi_select,json=multiSelect,proto3,oneof"` -} - -func (*Variable_Definition_Constant) isVariable_Definition_Value() {} - -func (*Variable_Definition_MultiSelect) isVariable_Definition_Value() {} - -type MultiSelect_Source struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - // Types that are assignable to Value: - // *MultiSelect_Source_LogsPath - // *MultiSelect_Source_MetricLabel - // *MultiSelect_Source_ConstantList - Value isMultiSelect_Source_Value `protobuf_oneof:"value"` -} - -func (x *MultiSelect_Source) Reset() { - *x = MultiSelect_Source{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[4] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *MultiSelect_Source) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*MultiSelect_Source) ProtoMessage() {} - -func (x *MultiSelect_Source) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[4] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use MultiSelect_Source.ProtoReflect.Descriptor instead. -func (*MultiSelect_Source) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDescGZIP(), []int{2, 0} -} - -func (m *MultiSelect_Source) GetValue() isMultiSelect_Source_Value { - if m != nil { - return m.Value - } - return nil -} - -func (x *MultiSelect_Source) GetLogsPath() *MultiSelect_LogsPathSource { - if x, ok := x.GetValue().(*MultiSelect_Source_LogsPath); ok { - return x.LogsPath - } - return nil -} - -func (x *MultiSelect_Source) GetMetricLabel() *MultiSelect_MetricLabelSource { - if x, ok := x.GetValue().(*MultiSelect_Source_MetricLabel); ok { - return x.MetricLabel - } - return nil -} - -func (x *MultiSelect_Source) GetConstantList() *MultiSelect_ConstantListSource { - if x, ok := x.GetValue().(*MultiSelect_Source_ConstantList); ok { - return x.ConstantList - } - return nil -} - -type isMultiSelect_Source_Value interface { - isMultiSelect_Source_Value() -} - -type MultiSelect_Source_LogsPath struct { - LogsPath *MultiSelect_LogsPathSource `protobuf:"bytes,1,opt,name=logs_path,json=logsPath,proto3,oneof"` -} - -type MultiSelect_Source_MetricLabel struct { - MetricLabel *MultiSelect_MetricLabelSource `protobuf:"bytes,2,opt,name=metric_label,json=metricLabel,proto3,oneof"` -} - -type MultiSelect_Source_ConstantList struct { - ConstantList *MultiSelect_ConstantListSource `protobuf:"bytes,3,opt,name=constant_list,json=constantList,proto3,oneof"` -} - -func (*MultiSelect_Source_LogsPath) isMultiSelect_Source_Value() {} - -func (*MultiSelect_Source_MetricLabel) isMultiSelect_Source_Value() {} - -func (*MultiSelect_Source_ConstantList) isMultiSelect_Source_Value() {} - -type MultiSelect_LogsPathSource struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Value *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"` -} - -func (x *MultiSelect_LogsPathSource) Reset() { - *x = MultiSelect_LogsPathSource{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[5] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *MultiSelect_LogsPathSource) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*MultiSelect_LogsPathSource) ProtoMessage() {} - -func (x *MultiSelect_LogsPathSource) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[5] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use MultiSelect_LogsPathSource.ProtoReflect.Descriptor instead. -func (*MultiSelect_LogsPathSource) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDescGZIP(), []int{2, 1} -} - -func (x *MultiSelect_LogsPathSource) GetValue() *wrapperspb.StringValue { - if x != nil { - return x.Value - } - return nil -} - -type MultiSelect_MetricLabelSource struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - MetricName *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=metric_name,json=metricName,proto3" json:"metric_name,omitempty"` - Label *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"` -} - -func (x *MultiSelect_MetricLabelSource) Reset() { - *x = MultiSelect_MetricLabelSource{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[6] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *MultiSelect_MetricLabelSource) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*MultiSelect_MetricLabelSource) ProtoMessage() {} - -func (x *MultiSelect_MetricLabelSource) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[6] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use MultiSelect_MetricLabelSource.ProtoReflect.Descriptor instead. -func (*MultiSelect_MetricLabelSource) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDescGZIP(), []int{2, 2} -} - -func (x *MultiSelect_MetricLabelSource) GetMetricName() *wrapperspb.StringValue { - if x != nil { - return x.MetricName - } - return nil -} - -func (x *MultiSelect_MetricLabelSource) GetLabel() *wrapperspb.StringValue { - if x != nil { - return x.Label - } - return nil -} - -type MultiSelect_ConstantListSource struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Values []*wrapperspb.StringValue `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"` -} - -func (x *MultiSelect_ConstantListSource) Reset() { - *x = MultiSelect_ConstantListSource{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[7] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *MultiSelect_ConstantListSource) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*MultiSelect_ConstantListSource) ProtoMessage() {} - -func (x *MultiSelect_ConstantListSource) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[7] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use MultiSelect_ConstantListSource.ProtoReflect.Descriptor instead. -func (*MultiSelect_ConstantListSource) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDescGZIP(), []int{2, 3} -} - -func (x *MultiSelect_ConstantListSource) GetValues() []*wrapperspb.StringValue { - if x != nil { - return x.Values - } - return nil -} - -var File_com_coralogixapis_dashboards_v1_ast_variable_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDesc = []byte{ - 0x0a, 0x32, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x61, 0x73, 0x74, 0x2f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, - 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, - 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xd2, 0x02, 0x0a, 0x08, 0x56, 0x61, - 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x30, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, - 0x75, 0x65, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x58, 0x0a, 0x0a, 0x64, 0x65, 0x66, 0x69, - 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x63, - 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, - 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, - 0x73, 0x74, 0x2e, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x44, 0x65, 0x66, 0x69, - 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0a, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, - 0x6f, 0x6e, 0x1a, 0xb9, 0x01, 0x0a, 0x0a, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, - 0x6e, 0x12, 0x4b, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, - 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, - 0x6e, 0x74, 0x48, 0x00, 0x52, 0x08, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0x55, - 0x0a, 0x0c, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69, - 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x48, 0x00, 0x52, 0x0b, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x53, - 0x65, 0x6c, 0x65, 0x63, 0x74, 0x42, 0x07, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x3e, - 0x0a, 0x08, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x12, 0x32, 0x0a, 0x05, 0x76, 0x61, - 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, - 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0xfc, - 0x05, 0x0a, 0x0b, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x12, 0x38, - 0x0a, 0x08, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, - 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x08, - 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, 0x12, 0x4f, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, - 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, - 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x4d, - 0x75, 0x6c, 0x74, 0x69, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x2e, 0x53, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x1a, 0xc6, 0x02, 0x0a, 0x06, 0x53, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x12, 0x5e, 0x0a, 0x09, 0x6c, 0x6f, 0x67, 0x73, 0x5f, 0x70, 0x61, 0x74, - 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3f, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, - 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x4d, 0x75, - 0x6c, 0x74, 0x69, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x2e, 0x4c, 0x6f, 0x67, 0x73, 0x50, 0x61, - 0x74, 0x68, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x48, 0x00, 0x52, 0x08, 0x6c, 0x6f, 0x67, 0x73, - 0x50, 0x61, 0x74, 0x68, 0x12, 0x67, 0x0a, 0x0c, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x6c, - 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x42, 0x2e, 0x63, 0x6f, 0x6d, - 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, - 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, - 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x2e, 0x4d, 0x65, 0x74, - 0x72, 0x69, 0x63, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x48, 0x00, - 0x52, 0x0b, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x6a, 0x0a, - 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x43, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69, - 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x4c, - 0x69, 0x73, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x48, 0x00, 0x52, 0x0c, 0x63, 0x6f, 0x6e, - 0x73, 0x74, 0x61, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x07, 0x0a, 0x05, 0x76, 0x61, 0x6c, - 0x75, 0x65, 0x1a, 0x44, 0x0a, 0x0e, 0x4c, 0x6f, 0x67, 0x73, 0x50, 0x61, 0x74, 0x68, 0x53, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x12, 0x32, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, - 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x1a, 0x86, 0x01, 0x0a, 0x11, 0x4d, 0x65, 0x74, - 0x72, 0x69, 0x63, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x3d, - 0x0a, 0x0b, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, - 0x65, 0x52, 0x0a, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x32, 0x0a, - 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, - 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, - 0x6c, 0x1a, 0x4a, 0x0a, 0x12, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x4c, 0x69, 0x73, - 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x34, 0x0a, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, - 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, - 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x42, 0x04, 0x5a, - 0x02, 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDescData = file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes = make([]protoimpl.MessageInfo, 8) -var file_com_coralogixapis_dashboards_v1_ast_variable_proto_goTypes = []interface{}{ - (*Variable)(nil), // 0: com.coralogixapis.dashboards.v1.ast.Variable - (*Constant)(nil), // 1: com.coralogixapis.dashboards.v1.ast.Constant - (*MultiSelect)(nil), // 2: com.coralogixapis.dashboards.v1.ast.MultiSelect - (*Variable_Definition)(nil), // 3: com.coralogixapis.dashboards.v1.ast.Variable.Definition - (*MultiSelect_Source)(nil), // 4: com.coralogixapis.dashboards.v1.ast.MultiSelect.Source - (*MultiSelect_LogsPathSource)(nil), // 5: com.coralogixapis.dashboards.v1.ast.MultiSelect.LogsPathSource - (*MultiSelect_MetricLabelSource)(nil), // 6: com.coralogixapis.dashboards.v1.ast.MultiSelect.MetricLabelSource - (*MultiSelect_ConstantListSource)(nil), // 7: com.coralogixapis.dashboards.v1.ast.MultiSelect.ConstantListSource - (*wrapperspb.StringValue)(nil), // 8: google.protobuf.StringValue -} -var file_com_coralogixapis_dashboards_v1_ast_variable_proto_depIdxs = []int32{ - 8, // 0: com.coralogixapis.dashboards.v1.ast.Variable.name:type_name -> google.protobuf.StringValue - 3, // 1: com.coralogixapis.dashboards.v1.ast.Variable.definition:type_name -> com.coralogixapis.dashboards.v1.ast.Variable.Definition - 8, // 2: com.coralogixapis.dashboards.v1.ast.Constant.value:type_name -> google.protobuf.StringValue - 8, // 3: com.coralogixapis.dashboards.v1.ast.MultiSelect.selected:type_name -> google.protobuf.StringValue - 4, // 4: com.coralogixapis.dashboards.v1.ast.MultiSelect.source:type_name -> com.coralogixapis.dashboards.v1.ast.MultiSelect.Source - 1, // 5: com.coralogixapis.dashboards.v1.ast.Variable.Definition.constant:type_name -> com.coralogixapis.dashboards.v1.ast.Constant - 2, // 6: com.coralogixapis.dashboards.v1.ast.Variable.Definition.multi_select:type_name -> com.coralogixapis.dashboards.v1.ast.MultiSelect - 5, // 7: com.coralogixapis.dashboards.v1.ast.MultiSelect.Source.logs_path:type_name -> com.coralogixapis.dashboards.v1.ast.MultiSelect.LogsPathSource - 6, // 8: com.coralogixapis.dashboards.v1.ast.MultiSelect.Source.metric_label:type_name -> com.coralogixapis.dashboards.v1.ast.MultiSelect.MetricLabelSource - 7, // 9: com.coralogixapis.dashboards.v1.ast.MultiSelect.Source.constant_list:type_name -> com.coralogixapis.dashboards.v1.ast.MultiSelect.ConstantListSource - 8, // 10: com.coralogixapis.dashboards.v1.ast.MultiSelect.LogsPathSource.value:type_name -> google.protobuf.StringValue - 8, // 11: com.coralogixapis.dashboards.v1.ast.MultiSelect.MetricLabelSource.metric_name:type_name -> google.protobuf.StringValue - 8, // 12: com.coralogixapis.dashboards.v1.ast.MultiSelect.MetricLabelSource.label:type_name -> google.protobuf.StringValue - 8, // 13: com.coralogixapis.dashboards.v1.ast.MultiSelect.ConstantListSource.values:type_name -> google.protobuf.StringValue - 14, // [14:14] is the sub-list for method output_type - 14, // [14:14] is the sub-list for method input_type - 14, // [14:14] is the sub-list for extension type_name - 14, // [14:14] is the sub-list for extension extendee - 0, // [0:14] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_ast_variable_proto_init() } -func file_com_coralogixapis_dashboards_v1_ast_variable_proto_init() { - if File_com_coralogixapis_dashboards_v1_ast_variable_proto != nil { - return - } - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Variable); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Constant); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MultiSelect); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Variable_Definition); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MultiSelect_Source); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MultiSelect_LogsPathSource); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MultiSelect_MetricLabelSource); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MultiSelect_ConstantListSource); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[3].OneofWrappers = []interface{}{ - (*Variable_Definition_Constant)(nil), - (*Variable_Definition_MultiSelect)(nil), - } - file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes[4].OneofWrappers = []interface{}{ - (*MultiSelect_Source_LogsPath)(nil), - (*MultiSelect_Source_MetricLabel)(nil), - (*MultiSelect_Source_ConstantList)(nil), - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDesc, - NumEnums: 0, - NumMessages: 8, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_ast_variable_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_ast_variable_proto_depIdxs, - MessageInfos: file_com_coralogixapis_dashboards_v1_ast_variable_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_ast_variable_proto = out.File - file_com_coralogixapis_dashboards_v1_ast_variable_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_ast_variable_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_ast_variable_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/coralogix-dashboards/v1/widget.pb.go b/controllers/clientset/grpc/coralogix-dashboards/v1/widget.pb.go deleted file mode 100644 index c2af196..0000000 --- a/controllers/clientset/grpc/coralogix-dashboards/v1/widget.pb.go +++ /dev/null @@ -1,401 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/dashboards/v1/ast/widget.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type Widget struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Id *UUID `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` - Title *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"` - Description *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` - Definition *Widget_Definition `protobuf:"bytes,4,opt,name=definition,proto3" json:"definition,omitempty"` - Appearance *Widget_Appearance `protobuf:"bytes,5,opt,name=appearance,proto3" json:"appearance,omitempty"` -} - -func (x *Widget) Reset() { - *x = Widget{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_widget_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *Widget) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*Widget) ProtoMessage() {} - -func (x *Widget) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_widget_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use Widget.ProtoReflect.Descriptor instead. -func (*Widget) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_widget_proto_rawDescGZIP(), []int{0} -} - -func (x *Widget) GetId() *UUID { - if x != nil { - return x.Id - } - return nil -} - -func (x *Widget) GetTitle() *wrapperspb.StringValue { - if x != nil { - return x.Title - } - return nil -} - -func (x *Widget) GetDescription() *wrapperspb.StringValue { - if x != nil { - return x.Description - } - return nil -} - -func (x *Widget) GetDefinition() *Widget_Definition { - if x != nil { - return x.Definition - } - return nil -} - -func (x *Widget) GetAppearance() *Widget_Appearance { - if x != nil { - return x.Appearance - } - return nil -} - -type Widget_Definition struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - // Types that are assignable to Value: - // *Widget_Definition_LineChart - // *Widget_Definition_DataTable - Value isWidget_Definition_Value `protobuf_oneof:"value"` -} - -func (x *Widget_Definition) Reset() { - *x = Widget_Definition{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_widget_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *Widget_Definition) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*Widget_Definition) ProtoMessage() {} - -func (x *Widget_Definition) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_widget_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use Widget_Definition.ProtoReflect.Descriptor instead. -func (*Widget_Definition) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_widget_proto_rawDescGZIP(), []int{0, 0} -} - -func (m *Widget_Definition) GetValue() isWidget_Definition_Value { - if m != nil { - return m.Value - } - return nil -} - -func (x *Widget_Definition) GetLineChart() *LineChart { - if x, ok := x.GetValue().(*Widget_Definition_LineChart); ok { - return x.LineChart - } - return nil -} - -func (x *Widget_Definition) GetDataTable() *DataTable { - if x, ok := x.GetValue().(*Widget_Definition_DataTable); ok { - return x.DataTable - } - return nil -} - -type isWidget_Definition_Value interface { - isWidget_Definition_Value() -} - -type Widget_Definition_LineChart struct { - LineChart *LineChart `protobuf:"bytes,1,opt,name=line_chart,json=lineChart,proto3,oneof"` -} - -type Widget_Definition_DataTable struct { - DataTable *DataTable `protobuf:"bytes,2,opt,name=data_table,json=dataTable,proto3,oneof"` -} - -func (*Widget_Definition_LineChart) isWidget_Definition_Value() {} - -func (*Widget_Definition_DataTable) isWidget_Definition_Value() {} - -type Widget_Appearance struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Width *wrapperspb.Int32Value `protobuf:"bytes,1,opt,name=width,proto3" json:"width,omitempty"` -} - -func (x *Widget_Appearance) Reset() { - *x = Widget_Appearance{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_dashboards_v1_ast_widget_proto_msgTypes[2] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *Widget_Appearance) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*Widget_Appearance) ProtoMessage() {} - -func (x *Widget_Appearance) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_dashboards_v1_ast_widget_proto_msgTypes[2] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use Widget_Appearance.ProtoReflect.Descriptor instead. -func (*Widget_Appearance) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_dashboards_v1_ast_widget_proto_rawDescGZIP(), []int{0, 1} -} - -func (x *Widget_Appearance) GetWidth() *wrapperspb.Int32Value { - if x != nil { - return x.Width - } - return nil -} - -var File_com_coralogixapis_dashboards_v1_ast_widget_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_dashboards_v1_ast_widget_proto_rawDesc = []byte{ - 0x0a, 0x30, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, - 0x31, 0x2f, 0x61, 0x73, 0x74, 0x2f, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x12, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, - 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, - 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x1a, 0x3c, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, - 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, - 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x73, 0x74, 0x2f, 0x77, 0x69, 0x64, - 0x67, 0x65, 0x74, 0x73, 0x2f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3c, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x73, 0x74, 0x2f, 0x77, 0x69, 0x64, 0x67, 0x65, - 0x74, 0x73, 0x2f, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x74, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x1a, 0x2b, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x22, 0xee, 0x04, 0x0a, 0x06, 0x57, 0x69, 0x64, 0x67, 0x65, 0x74, 0x12, 0x35, 0x0a, 0x02, 0x69, - 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, - 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x55, 0x49, 0x44, 0x52, 0x02, - 0x69, 0x64, 0x12, 0x32, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, - 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x3e, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, - 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, - 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, - 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x56, 0x0a, 0x0a, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, - 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x63, 0x6f, 0x6d, - 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, - 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, - 0x2e, 0x57, 0x69, 0x64, 0x67, 0x65, 0x74, 0x2e, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, - 0x6f, 0x6e, 0x52, 0x0a, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x56, - 0x0a, 0x0a, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x57, 0x69, 0x64, 0x67, 0x65, 0x74, 0x2e, - 0x41, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x0a, 0x61, 0x70, 0x70, 0x65, - 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x1a, 0xc7, 0x01, 0x0a, 0x0a, 0x44, 0x65, 0x66, 0x69, 0x6e, - 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x57, 0x0a, 0x0a, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x63, 0x68, - 0x61, 0x72, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, - 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, - 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x2e, 0x4c, 0x69, 0x6e, 0x65, 0x43, 0x68, 0x61, 0x72, - 0x74, 0x48, 0x00, 0x52, 0x09, 0x6c, 0x69, 0x6e, 0x65, 0x43, 0x68, 0x61, 0x72, 0x74, 0x12, 0x57, - 0x0a, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x73, 0x74, 0x2e, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, - 0x2e, 0x44, 0x61, 0x74, 0x61, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x48, 0x00, 0x52, 0x09, 0x64, 0x61, - 0x74, 0x61, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x07, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, - 0x1a, 0x3f, 0x0a, 0x0a, 0x41, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x31, - 0x0a, 0x05, 0x77, 0x69, 0x64, 0x74, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, - 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x77, 0x69, 0x64, 0x74, - 0x68, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_dashboards_v1_ast_widget_proto_rawDescOnce sync.Once - file_com_coralogixapis_dashboards_v1_ast_widget_proto_rawDescData = file_com_coralogixapis_dashboards_v1_ast_widget_proto_rawDesc -) - -func file_com_coralogixapis_dashboards_v1_ast_widget_proto_rawDescGZIP() []byte { - file_com_coralogixapis_dashboards_v1_ast_widget_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_dashboards_v1_ast_widget_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_dashboards_v1_ast_widget_proto_rawDescData) - }) - return file_com_coralogixapis_dashboards_v1_ast_widget_proto_rawDescData -} - -var file_com_coralogixapis_dashboards_v1_ast_widget_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_com_coralogixapis_dashboards_v1_ast_widget_proto_goTypes = []interface{}{ - (*Widget)(nil), // 0: com.coralogixapis.dashboards.v1.ast.Widget - (*Widget_Definition)(nil), // 1: com.coralogixapis.dashboards.v1.ast.Widget.Definition - (*Widget_Appearance)(nil), // 2: com.coralogixapis.dashboards.v1.ast.Widget.Appearance - (*UUID)(nil), // 3: com.coralogixapis.dashboards.v1.UUID - (*wrapperspb.StringValue)(nil), // 4: google.protobuf.StringValue - (*LineChart)(nil), // 5: com.coralogixapis.dashboards.v1.ast.widgets.LineChart - (*DataTable)(nil), // 6: com.coralogixapis.dashboards.v1.ast.widgets.DataTable - (*wrapperspb.Int32Value)(nil), // 7: google.protobuf.Int32Value -} -var file_com_coralogixapis_dashboards_v1_ast_widget_proto_depIdxs = []int32{ - 3, // 0: com.coralogixapis.dashboards.v1.ast.Widget.id:type_name -> com.coralogixapis.dashboards.v1.UUID - 4, // 1: com.coralogixapis.dashboards.v1.ast.Widget.title:type_name -> google.protobuf.StringValue - 4, // 2: com.coralogixapis.dashboards.v1.ast.Widget.description:type_name -> google.protobuf.StringValue - 1, // 3: com.coralogixapis.dashboards.v1.ast.Widget.definition:type_name -> com.coralogixapis.dashboards.v1.ast.Widget.Definition - 2, // 4: com.coralogixapis.dashboards.v1.ast.Widget.appearance:type_name -> com.coralogixapis.dashboards.v1.ast.Widget.Appearance - 5, // 5: com.coralogixapis.dashboards.v1.ast.Widget.Definition.line_chart:type_name -> com.coralogixapis.dashboards.v1.ast.widgets.LineChart - 6, // 6: com.coralogixapis.dashboards.v1.ast.Widget.Definition.data_table:type_name -> com.coralogixapis.dashboards.v1.ast.widgets.DataTable - 7, // 7: com.coralogixapis.dashboards.v1.ast.Widget.Appearance.width:type_name -> google.protobuf.Int32Value - 8, // [8:8] is the sub-list for method output_type - 8, // [8:8] is the sub-list for method input_type - 8, // [8:8] is the sub-list for extension type_name - 8, // [8:8] is the sub-list for extension extendee - 0, // [0:8] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_dashboards_v1_ast_widget_proto_init() } -func file_com_coralogixapis_dashboards_v1_ast_widget_proto_init() { - if File_com_coralogixapis_dashboards_v1_ast_widget_proto != nil { - return - } - file_com_coralogixapis_dashboards_v1_ast_widgets_data_table_proto_init() - file_com_coralogixapis_dashboards_v1_ast_widgets_line_chart_proto_init() - file_com_coralogixapis_dashboards_v1_types_proto_init() - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_dashboards_v1_ast_widget_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Widget); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_widget_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Widget_Definition); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_dashboards_v1_ast_widget_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Widget_Appearance); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - file_com_coralogixapis_dashboards_v1_ast_widget_proto_msgTypes[1].OneofWrappers = []interface{}{ - (*Widget_Definition_LineChart)(nil), - (*Widget_Definition_DataTable)(nil), - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_dashboards_v1_ast_widget_proto_rawDesc, - NumEnums: 0, - NumMessages: 3, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_dashboards_v1_ast_widget_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_dashboards_v1_ast_widget_proto_depIdxs, - MessageInfos: file_com_coralogixapis_dashboards_v1_ast_widget_proto_msgTypes, - }.Build() - File_com_coralogixapis_dashboards_v1_ast_widget_proto = out.File - file_com_coralogixapis_dashboards_v1_ast_widget_proto_rawDesc = nil - file_com_coralogixapis_dashboards_v1_ast_widget_proto_goTypes = nil - file_com_coralogixapis_dashboards_v1_ast_widget_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/enrichment/v1/audit_log.pb.go b/controllers/clientset/grpc/enrichment/v1/audit_log.pb.go deleted file mode 100644 index 43453ed..0000000 --- a/controllers/clientset/grpc/enrichment/v1/audit_log.pb.go +++ /dev/null @@ -1,179 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogix/enrichment/v1/audit_log.proto - -package __ - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - descriptorpb "google.golang.org/protobuf/types/descriptorpb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type AuditLogDescription struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"` -} - -func (x *AuditLogDescription) Reset() { - *x = AuditLogDescription{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_audit_log_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *AuditLogDescription) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*AuditLogDescription) ProtoMessage() {} - -func (x *AuditLogDescription) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_audit_log_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use AuditLogDescription.ProtoReflect.Descriptor instead. -func (*AuditLogDescription) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_audit_log_proto_rawDescGZIP(), []int{0} -} - -func (x *AuditLogDescription) GetDescription() string { - if x != nil { - return x.Description - } - return "" -} - -var file_com_coralogix_enrichment_v1_audit_log_proto_extTypes = []protoimpl.ExtensionInfo{ - { - ExtendedType: (*descriptorpb.MethodOptions)(nil), - ExtensionType: (*AuditLogDescription)(nil), - Field: 5003, - Name: "com.coralogix.enrichment.v1.audit_log_description", - Tag: "bytes,5003,opt,name=audit_log_description", - Filename: "com/coralogix/enrichment/v1/audit_log.proto", - }, -} - -// Extension fields to descriptorpb.MethodOptions. -var ( - // optional com.coralogix.enrichment.v1.AuditLogDescription audit_log_description = 5003; - E_AuditLogDescription = &file_com_coralogix_enrichment_v1_audit_log_proto_extTypes[0] -) - -var File_com_coralogix_enrichment_v1_audit_log_proto protoreflect.FileDescriptor - -var file_com_coralogix_enrichment_v1_audit_log_proto_rawDesc = []byte{ - 0x0a, 0x2b, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2f, - 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x75, - 0x64, 0x69, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1b, 0x63, - 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, - 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x64, 0x65, 0x73, 0x63, - 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x37, 0x0a, 0x13, - 0x41, 0x75, 0x64, 0x69, 0x74, 0x4c, 0x6f, 0x67, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, - 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, - 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, - 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x85, 0x01, 0x0a, 0x15, 0x61, 0x75, 0x64, 0x69, 0x74, 0x5f, - 0x6c, 0x6f, 0x67, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, - 0x1e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2e, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, - 0x8b, 0x27, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, - 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, - 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x74, 0x4c, 0x6f, 0x67, 0x44, 0x65, 0x73, - 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x61, 0x75, 0x64, 0x69, 0x74, 0x4c, - 0x6f, 0x67, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x04, 0x5a, - 0x02, 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogix_enrichment_v1_audit_log_proto_rawDescOnce sync.Once - file_com_coralogix_enrichment_v1_audit_log_proto_rawDescData = file_com_coralogix_enrichment_v1_audit_log_proto_rawDesc -) - -func file_com_coralogix_enrichment_v1_audit_log_proto_rawDescGZIP() []byte { - file_com_coralogix_enrichment_v1_audit_log_proto_rawDescOnce.Do(func() { - file_com_coralogix_enrichment_v1_audit_log_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogix_enrichment_v1_audit_log_proto_rawDescData) - }) - return file_com_coralogix_enrichment_v1_audit_log_proto_rawDescData -} - -var file_com_coralogix_enrichment_v1_audit_log_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_com_coralogix_enrichment_v1_audit_log_proto_goTypes = []interface{}{ - (*AuditLogDescription)(nil), // 0: com.coralogix.enrichment.v1.AuditLogDescription - (*descriptorpb.MethodOptions)(nil), // 1: google.protobuf.MethodOptions -} -var file_com_coralogix_enrichment_v1_audit_log_proto_depIdxs = []int32{ - 1, // 0: com.coralogix.enrichment.v1.audit_log_description:extendee -> google.protobuf.MethodOptions - 0, // 1: com.coralogix.enrichment.v1.audit_log_description:type_name -> com.coralogix.enrichment.v1.AuditLogDescription - 2, // [2:2] is the sub-list for method output_type - 2, // [2:2] is the sub-list for method input_type - 1, // [1:2] is the sub-list for extension type_name - 0, // [0:1] is the sub-list for extension extendee - 0, // [0:0] is the sub-list for field type_name -} - -func init() { file_com_coralogix_enrichment_v1_audit_log_proto_init() } -func file_com_coralogix_enrichment_v1_audit_log_proto_init() { - if File_com_coralogix_enrichment_v1_audit_log_proto != nil { - return - } - if !protoimpl.UnsafeEnabled { - file_com_coralogix_enrichment_v1_audit_log_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AuditLogDescription); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogix_enrichment_v1_audit_log_proto_rawDesc, - NumEnums: 0, - NumMessages: 1, - NumExtensions: 1, - NumServices: 0, - }, - GoTypes: file_com_coralogix_enrichment_v1_audit_log_proto_goTypes, - DependencyIndexes: file_com_coralogix_enrichment_v1_audit_log_proto_depIdxs, - MessageInfos: file_com_coralogix_enrichment_v1_audit_log_proto_msgTypes, - ExtensionInfos: file_com_coralogix_enrichment_v1_audit_log_proto_extTypes, - }.Build() - File_com_coralogix_enrichment_v1_audit_log_proto = out.File - file_com_coralogix_enrichment_v1_audit_log_proto_rawDesc = nil - file_com_coralogix_enrichment_v1_audit_log_proto_goTypes = nil - file_com_coralogix_enrichment_v1_audit_log_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/enrichment/v1/aws_enrichment_service.pb.go b/controllers/clientset/grpc/enrichment/v1/aws_enrichment_service.pb.go deleted file mode 100644 index 463f81e..0000000 --- a/controllers/clientset/grpc/enrichment/v1/aws_enrichment_service.pb.go +++ /dev/null @@ -1,300 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogix/enrichment/v1/aws_enrichment_service.proto - -package __ - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type GetSupportedAwsResourceTypesRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *GetSupportedAwsResourceTypesRequest) Reset() { - *x = GetSupportedAwsResourceTypesRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetSupportedAwsResourceTypesRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetSupportedAwsResourceTypesRequest) ProtoMessage() {} - -func (x *GetSupportedAwsResourceTypesRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GetSupportedAwsResourceTypesRequest.ProtoReflect.Descriptor instead. -func (*GetSupportedAwsResourceTypesRequest) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_rawDescGZIP(), []int{0} -} - -type GetSupportedAwsResourceTypesResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - ResourceTypes []*SupportedAwsResourceType `protobuf:"bytes,1,rep,name=resource_types,json=resourceTypes,proto3" json:"resource_types,omitempty"` -} - -func (x *GetSupportedAwsResourceTypesResponse) Reset() { - *x = GetSupportedAwsResourceTypesResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetSupportedAwsResourceTypesResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetSupportedAwsResourceTypesResponse) ProtoMessage() {} - -func (x *GetSupportedAwsResourceTypesResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GetSupportedAwsResourceTypesResponse.ProtoReflect.Descriptor instead. -func (*GetSupportedAwsResourceTypesResponse) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_rawDescGZIP(), []int{1} -} - -func (x *GetSupportedAwsResourceTypesResponse) GetResourceTypes() []*SupportedAwsResourceType { - if x != nil { - return x.ResourceTypes - } - return nil -} - -type SupportedAwsResourceType struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` - DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"` -} - -func (x *SupportedAwsResourceType) Reset() { - *x = SupportedAwsResourceType{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_msgTypes[2] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *SupportedAwsResourceType) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*SupportedAwsResourceType) ProtoMessage() {} - -func (x *SupportedAwsResourceType) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_msgTypes[2] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use SupportedAwsResourceType.ProtoReflect.Descriptor instead. -func (*SupportedAwsResourceType) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_rawDescGZIP(), []int{2} -} - -func (x *SupportedAwsResourceType) GetType() string { - if x != nil { - return x.Type - } - return "" -} - -func (x *SupportedAwsResourceType) GetDisplayName() string { - if x != nil { - return x.DisplayName - } - return "" -} - -var File_com_coralogix_enrichment_v1_aws_enrichment_service_proto protoreflect.FileDescriptor - -var file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_rawDesc = []byte{ - 0x0a, 0x38, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2f, - 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x77, - 0x73, 0x5f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1b, 0x63, 0x6f, 0x6d, 0x2e, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, - 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x1a, 0x2b, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, - 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, - 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x25, 0x0a, 0x23, 0x47, 0x65, 0x74, 0x53, 0x75, 0x70, 0x70, 0x6f, - 0x72, 0x74, 0x65, 0x64, 0x41, 0x77, 0x73, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, - 0x79, 0x70, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x84, 0x01, 0x0a, 0x24, - 0x47, 0x65, 0x74, 0x53, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x41, 0x77, 0x73, 0x52, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5c, 0x0a, 0x0e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x63, - 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, - 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x75, 0x70, 0x70, 0x6f, - 0x72, 0x74, 0x65, 0x64, 0x41, 0x77, 0x73, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, - 0x79, 0x70, 0x65, 0x52, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, - 0x65, 0x73, 0x22, 0x51, 0x0a, 0x18, 0x53, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x41, - 0x77, 0x73, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, - 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, - 0x70, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, - 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, - 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x32, 0xe4, 0x01, 0x0a, 0x14, 0x41, 0x77, 0x73, 0x45, 0x6e, 0x72, - 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xcb, - 0x01, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x53, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x41, - 0x77, 0x73, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, - 0x40, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, - 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, - 0x74, 0x53, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x41, 0x77, 0x73, 0x52, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x1a, 0x41, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, - 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, - 0x47, 0x65, 0x74, 0x53, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x41, 0x77, 0x73, 0x52, - 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x26, 0xc2, 0xb8, 0x02, 0x22, 0x0a, 0x20, 0x47, 0x65, 0x74, 0x20, - 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x20, 0x41, 0x77, 0x73, 0x20, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x20, 0x74, 0x79, 0x70, 0x65, 0x73, 0x42, 0x04, 0x5a, 0x02, - 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_rawDescOnce sync.Once - file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_rawDescData = file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_rawDesc -) - -func file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_rawDescGZIP() []byte { - file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_rawDescOnce.Do(func() { - file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_rawDescData) - }) - return file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_rawDescData -} - -var file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_goTypes = []interface{}{ - (*GetSupportedAwsResourceTypesRequest)(nil), // 0: com.coralogix.enrichment.v1.GetSupportedAwsResourceTypesRequest - (*GetSupportedAwsResourceTypesResponse)(nil), // 1: com.coralogix.enrichment.v1.GetSupportedAwsResourceTypesResponse - (*SupportedAwsResourceType)(nil), // 2: com.coralogix.enrichment.v1.SupportedAwsResourceType -} -var file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_depIdxs = []int32{ - 2, // 0: com.coralogix.enrichment.v1.GetSupportedAwsResourceTypesResponse.resource_types:type_name -> com.coralogix.enrichment.v1.SupportedAwsResourceType - 0, // 1: com.coralogix.enrichment.v1.AwsEnrichmentService.GetSupportedAwsResourceTypes:input_type -> com.coralogix.enrichment.v1.GetSupportedAwsResourceTypesRequest - 1, // 2: com.coralogix.enrichment.v1.AwsEnrichmentService.GetSupportedAwsResourceTypes:output_type -> com.coralogix.enrichment.v1.GetSupportedAwsResourceTypesResponse - 2, // [2:3] is the sub-list for method output_type - 1, // [1:2] is the sub-list for method input_type - 1, // [1:1] is the sub-list for extension type_name - 1, // [1:1] is the sub-list for extension extendee - 0, // [0:1] is the sub-list for field type_name -} - -func init() { file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_init() } -func file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_init() { - if File_com_coralogix_enrichment_v1_aws_enrichment_service_proto != nil { - return - } - file_com_coralogix_enrichment_v1_audit_log_proto_init() - if !protoimpl.UnsafeEnabled { - file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetSupportedAwsResourceTypesRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetSupportedAwsResourceTypesResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SupportedAwsResourceType); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_rawDesc, - NumEnums: 0, - NumMessages: 3, - NumExtensions: 0, - NumServices: 1, - }, - GoTypes: file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_goTypes, - DependencyIndexes: file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_depIdxs, - MessageInfos: file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_msgTypes, - }.Build() - File_com_coralogix_enrichment_v1_aws_enrichment_service_proto = out.File - file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_rawDesc = nil - file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_goTypes = nil - file_com_coralogix_enrichment_v1_aws_enrichment_service_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/enrichment/v1/aws_enrichment_service_grpc.pb.go b/controllers/clientset/grpc/enrichment/v1/aws_enrichment_service_grpc.pb.go deleted file mode 100644 index 9b4db5f..0000000 --- a/controllers/clientset/grpc/enrichment/v1/aws_enrichment_service_grpc.pb.go +++ /dev/null @@ -1,106 +0,0 @@ -// Code generated by protoc-gen-go-grpc. DO NOT EDIT. -// versions: -// - protoc-gen-go-grpc v1.2.0 -// - protoc v3.21.8 -// source: com/coralogix/enrichment/v1/aws_enrichment_service.proto - -package __ - -import ( - context "context" - - grpc "google.golang.org/grpc" - codes "google.golang.org/grpc/codes" - status "google.golang.org/grpc/status" -) - -// This is a compile-time assertion to ensure that this generated file -// is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 - -// AwsEnrichmentServiceClient is the client API for AwsEnrichmentService service. -// -// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. -type AwsEnrichmentServiceClient interface { - GetSupportedAwsResourceTypes(ctx context.Context, in *GetSupportedAwsResourceTypesRequest, opts ...grpc.CallOption) (*GetSupportedAwsResourceTypesResponse, error) -} - -type awsEnrichmentServiceClient struct { - cc grpc.ClientConnInterface -} - -func NewAwsEnrichmentServiceClient(cc grpc.ClientConnInterface) AwsEnrichmentServiceClient { - return &awsEnrichmentServiceClient{cc} -} - -func (c *awsEnrichmentServiceClient) GetSupportedAwsResourceTypes(ctx context.Context, in *GetSupportedAwsResourceTypesRequest, opts ...grpc.CallOption) (*GetSupportedAwsResourceTypesResponse, error) { - out := new(GetSupportedAwsResourceTypesResponse) - err := c.cc.Invoke(ctx, "/com.coralogix.enrichment.v1.AwsEnrichmentService/GetSupportedAwsResourceTypes", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -// AwsEnrichmentServiceServer is the server API for AwsEnrichmentService service. -// All implementations must embed UnimplementedAwsEnrichmentServiceServer -// for forward compatibility -type AwsEnrichmentServiceServer interface { - GetSupportedAwsResourceTypes(context.Context, *GetSupportedAwsResourceTypesRequest) (*GetSupportedAwsResourceTypesResponse, error) - mustEmbedUnimplementedAwsEnrichmentServiceServer() -} - -// UnimplementedAwsEnrichmentServiceServer must be embedded to have forward compatible implementations. -type UnimplementedAwsEnrichmentServiceServer struct { -} - -func (UnimplementedAwsEnrichmentServiceServer) GetSupportedAwsResourceTypes(context.Context, *GetSupportedAwsResourceTypesRequest) (*GetSupportedAwsResourceTypesResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method GetSupportedAwsResourceTypes not implemented") -} -func (UnimplementedAwsEnrichmentServiceServer) mustEmbedUnimplementedAwsEnrichmentServiceServer() {} - -// UnsafeAwsEnrichmentServiceServer may be embedded to opt out of forward compatibility for this service. -// Use of this interface is not recommended, as added methods to AwsEnrichmentServiceServer will -// result in compilation errors. -type UnsafeAwsEnrichmentServiceServer interface { - mustEmbedUnimplementedAwsEnrichmentServiceServer() -} - -func RegisterAwsEnrichmentServiceServer(s grpc.ServiceRegistrar, srv AwsEnrichmentServiceServer) { - s.RegisterService(&AwsEnrichmentService_ServiceDesc, srv) -} - -func _AwsEnrichmentService_GetSupportedAwsResourceTypes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(GetSupportedAwsResourceTypesRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(AwsEnrichmentServiceServer).GetSupportedAwsResourceTypes(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogix.enrichment.v1.AwsEnrichmentService/GetSupportedAwsResourceTypes", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(AwsEnrichmentServiceServer).GetSupportedAwsResourceTypes(ctx, req.(*GetSupportedAwsResourceTypesRequest)) - } - return interceptor(ctx, in, info, handler) -} - -// AwsEnrichmentService_ServiceDesc is the grpc.ServiceDesc for AwsEnrichmentService service. -// It's only intended for direct use with grpc.RegisterService, -// and not to be introspected or modified (even as a copy) -var AwsEnrichmentService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "com.coralogix.enrichment.v1.AwsEnrichmentService", - HandlerType: (*AwsEnrichmentServiceServer)(nil), - Methods: []grpc.MethodDesc{ - { - MethodName: "GetSupportedAwsResourceTypes", - Handler: _AwsEnrichmentService_GetSupportedAwsResourceTypes_Handler, - }, - }, - Streams: []grpc.StreamDesc{}, - Metadata: "com/coralogix/enrichment/v1/aws_enrichment_service.proto", -} diff --git a/controllers/clientset/grpc/enrichment/v1/custom_enrichment.pb.go b/controllers/clientset/grpc/enrichment/v1/custom_enrichment.pb.go deleted file mode 100644 index 0b0524d..0000000 --- a/controllers/clientset/grpc/enrichment/v1/custom_enrichment.pb.go +++ /dev/null @@ -1,175 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogix/enrichment/v1/custom_enrichment.proto - -package __ - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type CustomEnrichment struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` - Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` - Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"` - Version uint32 `protobuf:"varint,5,opt,name=version,proto3" json:"version,omitempty"` -} - -func (x *CustomEnrichment) Reset() { - *x = CustomEnrichment{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *CustomEnrichment) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*CustomEnrichment) ProtoMessage() {} - -func (x *CustomEnrichment) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use CustomEnrichment.ProtoReflect.Descriptor instead. -func (*CustomEnrichment) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_custom_enrichment_proto_rawDescGZIP(), []int{0} -} - -func (x *CustomEnrichment) GetId() uint32 { - if x != nil { - return x.Id - } - return 0 -} - -func (x *CustomEnrichment) GetName() string { - if x != nil { - return x.Name - } - return "" -} - -func (x *CustomEnrichment) GetDescription() string { - if x != nil { - return x.Description - } - return "" -} - -func (x *CustomEnrichment) GetVersion() uint32 { - if x != nil { - return x.Version - } - return 0 -} - -var File_com_coralogix_enrichment_v1_custom_enrichment_proto protoreflect.FileDescriptor - -var file_com_coralogix_enrichment_v1_custom_enrichment_proto_rawDesc = []byte{ - 0x0a, 0x33, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2f, - 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x63, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1b, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, - 0x76, 0x31, 0x22, 0x72, 0x0a, 0x10, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, - 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x0d, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, - 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, - 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x76, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogix_enrichment_v1_custom_enrichment_proto_rawDescOnce sync.Once - file_com_coralogix_enrichment_v1_custom_enrichment_proto_rawDescData = file_com_coralogix_enrichment_v1_custom_enrichment_proto_rawDesc -) - -func file_com_coralogix_enrichment_v1_custom_enrichment_proto_rawDescGZIP() []byte { - file_com_coralogix_enrichment_v1_custom_enrichment_proto_rawDescOnce.Do(func() { - file_com_coralogix_enrichment_v1_custom_enrichment_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogix_enrichment_v1_custom_enrichment_proto_rawDescData) - }) - return file_com_coralogix_enrichment_v1_custom_enrichment_proto_rawDescData -} - -var file_com_coralogix_enrichment_v1_custom_enrichment_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_com_coralogix_enrichment_v1_custom_enrichment_proto_goTypes = []interface{}{ - (*CustomEnrichment)(nil), // 0: com.coralogix.enrichment.v1.CustomEnrichment -} -var file_com_coralogix_enrichment_v1_custom_enrichment_proto_depIdxs = []int32{ - 0, // [0:0] is the sub-list for method output_type - 0, // [0:0] is the sub-list for method input_type - 0, // [0:0] is the sub-list for extension type_name - 0, // [0:0] is the sub-list for extension extendee - 0, // [0:0] is the sub-list for field type_name -} - -func init() { file_com_coralogix_enrichment_v1_custom_enrichment_proto_init() } -func file_com_coralogix_enrichment_v1_custom_enrichment_proto_init() { - if File_com_coralogix_enrichment_v1_custom_enrichment_proto != nil { - return - } - if !protoimpl.UnsafeEnabled { - file_com_coralogix_enrichment_v1_custom_enrichment_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CustomEnrichment); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogix_enrichment_v1_custom_enrichment_proto_rawDesc, - NumEnums: 0, - NumMessages: 1, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogix_enrichment_v1_custom_enrichment_proto_goTypes, - DependencyIndexes: file_com_coralogix_enrichment_v1_custom_enrichment_proto_depIdxs, - MessageInfos: file_com_coralogix_enrichment_v1_custom_enrichment_proto_msgTypes, - }.Build() - File_com_coralogix_enrichment_v1_custom_enrichment_proto = out.File - file_com_coralogix_enrichment_v1_custom_enrichment_proto_rawDesc = nil - file_com_coralogix_enrichment_v1_custom_enrichment_proto_goTypes = nil - file_com_coralogix_enrichment_v1_custom_enrichment_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/enrichment/v1/custom_enrichment_service.pb.go b/controllers/clientset/grpc/enrichment/v1/custom_enrichment_service.pb.go deleted file mode 100644 index 649fbe6..0000000 --- a/controllers/clientset/grpc/enrichment/v1/custom_enrichment_service.pb.go +++ /dev/null @@ -1,1052 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogix/enrichment/v1/custom_enrichment_service.proto - -package __ - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type File struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Name *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` - Extension *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=extension,proto3" json:"extension,omitempty"` - // Types that are assignable to Content: - // *File_Textual - // *File_Binary - Content isFile_Content `protobuf_oneof:"content"` -} - -func (x *File) Reset() { - *x = File{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *File) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*File) ProtoMessage() {} - -func (x *File) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use File.ProtoReflect.Descriptor instead. -func (*File) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescGZIP(), []int{0} -} - -func (x *File) GetName() *wrapperspb.StringValue { - if x != nil { - return x.Name - } - return nil -} - -func (x *File) GetExtension() *wrapperspb.StringValue { - if x != nil { - return x.Extension - } - return nil -} - -func (m *File) GetContent() isFile_Content { - if m != nil { - return m.Content - } - return nil -} - -func (x *File) GetTextual() *wrapperspb.StringValue { - if x, ok := x.GetContent().(*File_Textual); ok { - return x.Textual - } - return nil -} - -func (x *File) GetBinary() *wrapperspb.BytesValue { - if x, ok := x.GetContent().(*File_Binary); ok { - return x.Binary - } - return nil -} - -type isFile_Content interface { - isFile_Content() -} - -type File_Textual struct { - Textual *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=textual,proto3,oneof"` -} - -type File_Binary struct { - Binary *wrapperspb.BytesValue `protobuf:"bytes,4,opt,name=binary,proto3,oneof"` -} - -func (*File_Textual) isFile_Content() {} - -func (*File_Binary) isFile_Content() {} - -type GetCustomEnrichmentRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Id *wrapperspb.UInt32Value `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` -} - -func (x *GetCustomEnrichmentRequest) Reset() { - *x = GetCustomEnrichmentRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetCustomEnrichmentRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetCustomEnrichmentRequest) ProtoMessage() {} - -func (x *GetCustomEnrichmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GetCustomEnrichmentRequest.ProtoReflect.Descriptor instead. -func (*GetCustomEnrichmentRequest) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescGZIP(), []int{1} -} - -func (x *GetCustomEnrichmentRequest) GetId() *wrapperspb.UInt32Value { - if x != nil { - return x.Id - } - return nil -} - -type GetCustomEnrichmentResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - CustomEnrichment *CustomEnrichment `protobuf:"bytes,1,opt,name=custom_enrichment,json=customEnrichment,proto3" json:"custom_enrichment,omitempty"` -} - -func (x *GetCustomEnrichmentResponse) Reset() { - *x = GetCustomEnrichmentResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[2] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetCustomEnrichmentResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetCustomEnrichmentResponse) ProtoMessage() {} - -func (x *GetCustomEnrichmentResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[2] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GetCustomEnrichmentResponse.ProtoReflect.Descriptor instead. -func (*GetCustomEnrichmentResponse) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescGZIP(), []int{2} -} - -func (x *GetCustomEnrichmentResponse) GetCustomEnrichment() *CustomEnrichment { - if x != nil { - return x.CustomEnrichment - } - return nil -} - -type GetCustomEnrichmentsRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *GetCustomEnrichmentsRequest) Reset() { - *x = GetCustomEnrichmentsRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[3] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetCustomEnrichmentsRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetCustomEnrichmentsRequest) ProtoMessage() {} - -func (x *GetCustomEnrichmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[3] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GetCustomEnrichmentsRequest.ProtoReflect.Descriptor instead. -func (*GetCustomEnrichmentsRequest) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescGZIP(), []int{3} -} - -type GetCustomEnrichmentsResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - CustomEnrichments []*CustomEnrichment `protobuf:"bytes,1,rep,name=custom_enrichments,json=customEnrichments,proto3" json:"custom_enrichments,omitempty"` -} - -func (x *GetCustomEnrichmentsResponse) Reset() { - *x = GetCustomEnrichmentsResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[4] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetCustomEnrichmentsResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetCustomEnrichmentsResponse) ProtoMessage() {} - -func (x *GetCustomEnrichmentsResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[4] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GetCustomEnrichmentsResponse.ProtoReflect.Descriptor instead. -func (*GetCustomEnrichmentsResponse) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescGZIP(), []int{4} -} - -func (x *GetCustomEnrichmentsResponse) GetCustomEnrichments() []*CustomEnrichment { - if x != nil { - return x.CustomEnrichments - } - return nil -} - -type CreateCustomEnrichmentRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Name *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` - Description *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"` - File *File `protobuf:"bytes,4,opt,name=file,proto3" json:"file,omitempty"` -} - -func (x *CreateCustomEnrichmentRequest) Reset() { - *x = CreateCustomEnrichmentRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[5] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *CreateCustomEnrichmentRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*CreateCustomEnrichmentRequest) ProtoMessage() {} - -func (x *CreateCustomEnrichmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[5] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use CreateCustomEnrichmentRequest.ProtoReflect.Descriptor instead. -func (*CreateCustomEnrichmentRequest) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescGZIP(), []int{5} -} - -func (x *CreateCustomEnrichmentRequest) GetName() *wrapperspb.StringValue { - if x != nil { - return x.Name - } - return nil -} - -func (x *CreateCustomEnrichmentRequest) GetDescription() *wrapperspb.StringValue { - if x != nil { - return x.Description - } - return nil -} - -func (x *CreateCustomEnrichmentRequest) GetFile() *File { - if x != nil { - return x.File - } - return nil -} - -type CreateCustomEnrichmentResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"` - CustomEnrichment *CustomEnrichment `protobuf:"bytes,2,opt,name=custom_enrichment,json=customEnrichment,proto3" json:"custom_enrichment,omitempty"` -} - -func (x *CreateCustomEnrichmentResponse) Reset() { - *x = CreateCustomEnrichmentResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[6] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *CreateCustomEnrichmentResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*CreateCustomEnrichmentResponse) ProtoMessage() {} - -func (x *CreateCustomEnrichmentResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[6] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use CreateCustomEnrichmentResponse.ProtoReflect.Descriptor instead. -func (*CreateCustomEnrichmentResponse) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescGZIP(), []int{6} -} - -func (x *CreateCustomEnrichmentResponse) GetMessage() string { - if x != nil { - return x.Message - } - return "" -} - -func (x *CreateCustomEnrichmentResponse) GetCustomEnrichment() *CustomEnrichment { - if x != nil { - return x.CustomEnrichment - } - return nil -} - -type UpdateCustomEnrichmentRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - CustomEnrichmentId *wrapperspb.UInt32Value `protobuf:"bytes,1,opt,name=custom_enrichment_id,json=customEnrichmentId,proto3" json:"custom_enrichment_id,omitempty"` - Name *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` - Description *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` - File *File `protobuf:"bytes,4,opt,name=file,proto3" json:"file,omitempty"` -} - -func (x *UpdateCustomEnrichmentRequest) Reset() { - *x = UpdateCustomEnrichmentRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[7] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *UpdateCustomEnrichmentRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*UpdateCustomEnrichmentRequest) ProtoMessage() {} - -func (x *UpdateCustomEnrichmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[7] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use UpdateCustomEnrichmentRequest.ProtoReflect.Descriptor instead. -func (*UpdateCustomEnrichmentRequest) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescGZIP(), []int{7} -} - -func (x *UpdateCustomEnrichmentRequest) GetCustomEnrichmentId() *wrapperspb.UInt32Value { - if x != nil { - return x.CustomEnrichmentId - } - return nil -} - -func (x *UpdateCustomEnrichmentRequest) GetName() *wrapperspb.StringValue { - if x != nil { - return x.Name - } - return nil -} - -func (x *UpdateCustomEnrichmentRequest) GetDescription() *wrapperspb.StringValue { - if x != nil { - return x.Description - } - return nil -} - -func (x *UpdateCustomEnrichmentRequest) GetFile() *File { - if x != nil { - return x.File - } - return nil -} - -type UpdateCustomEnrichmentResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"` - CustomEnrichment *CustomEnrichment `protobuf:"bytes,2,opt,name=custom_enrichment,json=customEnrichment,proto3" json:"custom_enrichment,omitempty"` -} - -func (x *UpdateCustomEnrichmentResponse) Reset() { - *x = UpdateCustomEnrichmentResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[8] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *UpdateCustomEnrichmentResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*UpdateCustomEnrichmentResponse) ProtoMessage() {} - -func (x *UpdateCustomEnrichmentResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[8] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use UpdateCustomEnrichmentResponse.ProtoReflect.Descriptor instead. -func (*UpdateCustomEnrichmentResponse) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescGZIP(), []int{8} -} - -func (x *UpdateCustomEnrichmentResponse) GetMessage() string { - if x != nil { - return x.Message - } - return "" -} - -func (x *UpdateCustomEnrichmentResponse) GetCustomEnrichment() *CustomEnrichment { - if x != nil { - return x.CustomEnrichment - } - return nil -} - -type DeleteCustomEnrichmentRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - CustomEnrichmentId *wrapperspb.UInt32Value `protobuf:"bytes,2,opt,name=custom_enrichment_id,json=customEnrichmentId,proto3" json:"custom_enrichment_id,omitempty"` -} - -func (x *DeleteCustomEnrichmentRequest) Reset() { - *x = DeleteCustomEnrichmentRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[9] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *DeleteCustomEnrichmentRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*DeleteCustomEnrichmentRequest) ProtoMessage() {} - -func (x *DeleteCustomEnrichmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[9] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use DeleteCustomEnrichmentRequest.ProtoReflect.Descriptor instead. -func (*DeleteCustomEnrichmentRequest) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescGZIP(), []int{9} -} - -func (x *DeleteCustomEnrichmentRequest) GetCustomEnrichmentId() *wrapperspb.UInt32Value { - if x != nil { - return x.CustomEnrichmentId - } - return nil -} - -type DeleteCustomEnrichmentResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"` - CustomEnrichmentId uint32 `protobuf:"varint,2,opt,name=custom_enrichment_id,json=customEnrichmentId,proto3" json:"custom_enrichment_id,omitempty"` -} - -func (x *DeleteCustomEnrichmentResponse) Reset() { - *x = DeleteCustomEnrichmentResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[10] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *DeleteCustomEnrichmentResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*DeleteCustomEnrichmentResponse) ProtoMessage() {} - -func (x *DeleteCustomEnrichmentResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[10] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use DeleteCustomEnrichmentResponse.ProtoReflect.Descriptor instead. -func (*DeleteCustomEnrichmentResponse) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescGZIP(), []int{10} -} - -func (x *DeleteCustomEnrichmentResponse) GetMessage() string { - if x != nil { - return x.Message - } - return "" -} - -func (x *DeleteCustomEnrichmentResponse) GetCustomEnrichmentId() uint32 { - if x != nil { - return x.CustomEnrichmentId - } - return 0 -} - -var File_com_coralogix_enrichment_v1_custom_enrichment_service_proto protoreflect.FileDescriptor - -var file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDesc = []byte{ - 0x0a, 0x3b, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2f, - 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x63, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x5f, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1b, 0x63, - 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, - 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, - 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x33, 0x63, 0x6f, 0x6d, 0x2f, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, - 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x65, - 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, - 0x2b, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2f, 0x65, - 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x75, 0x64, - 0x69, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xf0, 0x01, 0x0a, - 0x04, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x30, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, - 0x65, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x3a, 0x0a, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e, - 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, - 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, - 0x69, 0x6f, 0x6e, 0x12, 0x38, 0x0a, 0x07, 0x74, 0x65, 0x78, 0x74, 0x75, 0x61, 0x6c, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, - 0x75, 0x65, 0x48, 0x00, 0x52, 0x07, 0x74, 0x65, 0x78, 0x74, 0x75, 0x61, 0x6c, 0x12, 0x35, 0x0a, - 0x06, 0x62, 0x69, 0x6e, 0x61, 0x72, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, - 0x42, 0x79, 0x74, 0x65, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x48, 0x00, 0x52, 0x06, 0x62, 0x69, - 0x6e, 0x61, 0x72, 0x79, 0x42, 0x09, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, - 0x4a, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, - 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2c, 0x0a, - 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x49, 0x6e, 0x74, - 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x02, 0x69, 0x64, 0x22, 0x79, 0x0a, 0x1b, 0x47, - 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, - 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5a, 0x0a, 0x11, 0x63, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, - 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, - 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, - 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x10, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, - 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x22, 0x1d, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x7c, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5c, 0x0a, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, - 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, - 0x0b, 0x32, 0x2d, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, - 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, - 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, - 0x52, 0x11, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, - 0x6e, 0x74, 0x73, 0x22, 0xc8, 0x01, 0x0a, 0x1d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, - 0x65, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x3e, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, - 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, - 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, - 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x35, 0x0a, 0x04, 0x66, 0x69, 0x6c, 0x65, 0x18, - 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, - 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, - 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x04, 0x66, 0x69, 0x6c, 0x65, 0x22, 0x96, - 0x01, 0x0a, 0x1e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, - 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x5a, 0x0a, 0x11, 0x63, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, - 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, - 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, - 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x10, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, - 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x22, 0x98, 0x02, 0x0a, 0x1d, 0x55, 0x70, 0x64, 0x61, - 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, - 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x4e, 0x0a, 0x14, 0x63, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x5f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x69, - 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x49, 0x6e, 0x74, 0x33, 0x32, - 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, - 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x30, 0x0a, 0x04, 0x6e, 0x61, 0x6d, - 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, - 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x3e, 0x0a, 0x0b, 0x64, - 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0b, - 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x35, 0x0a, 0x04, 0x66, - 0x69, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, - 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x04, 0x66, 0x69, - 0x6c, 0x65, 0x22, 0x96, 0x01, 0x0a, 0x1e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, - 0x5a, 0x0a, 0x11, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, - 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x63, 0x6f, 0x6d, - 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, - 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, - 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x10, 0x63, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x22, 0x6f, 0x0a, 0x1d, 0x44, - 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, - 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x4e, 0x0a, 0x14, - 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, - 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x49, 0x6e, - 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x6c, 0x0a, 0x1e, - 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, - 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, - 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x30, 0x0a, 0x14, 0x63, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x5f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, - 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x32, 0x93, 0x07, 0x0a, 0x17, 0x43, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x53, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xab, 0x01, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x43, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x37, - 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, - 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, - 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, - 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, - 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x22, 0x21, 0xc2, 0xb8, 0x02, 0x1d, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x20, 0x63, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x20, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x62, - 0x79, 0x20, 0x69, 0x64, 0x12, 0xad, 0x01, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x38, 0x2e, - 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, - 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, - 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, - 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x22, 0x20, 0xc2, 0xb8, 0x02, 0x1c, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x20, 0x61, 0x6c, - 0x6c, 0x20, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x20, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, - 0x65, 0x6e, 0x74, 0x73, 0x12, 0xb1, 0x01, 0x0a, 0x16, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x12, - 0x3a, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, - 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, - 0x65, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, - 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x63, 0x6f, - 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, - 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, - 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1e, 0xc2, 0xb8, 0x02, 0x1a, 0x0a, 0x18, - 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x20, 0x65, 0x6e, - 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0xb1, 0x01, 0x0a, 0x16, 0x55, 0x70, 0x64, - 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, - 0x65, 0x6e, 0x74, 0x12, 0x3a, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, - 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, - 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, - 0x3b, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, - 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, - 0x64, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, - 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1e, 0xc2, 0xb8, - 0x02, 0x1a, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x63, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x20, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0xb1, 0x01, 0x0a, - 0x16, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, - 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x3a, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, - 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, - 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, - 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x22, 0x1e, 0xc2, 0xb8, 0x02, 0x1a, 0x0a, 0x18, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x20, 0x63, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x20, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, - 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescOnce sync.Once - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescData = file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDesc -) - -func file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescGZIP() []byte { - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescOnce.Do(func() { - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescData) - }) - return file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDescData -} - -var file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes = make([]protoimpl.MessageInfo, 11) -var file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_goTypes = []interface{}{ - (*File)(nil), // 0: com.coralogix.enrichment.v1.File - (*GetCustomEnrichmentRequest)(nil), // 1: com.coralogix.enrichment.v1.GetCustomEnrichmentRequest - (*GetCustomEnrichmentResponse)(nil), // 2: com.coralogix.enrichment.v1.GetCustomEnrichmentResponse - (*GetCustomEnrichmentsRequest)(nil), // 3: com.coralogix.enrichment.v1.GetCustomEnrichmentsRequest - (*GetCustomEnrichmentsResponse)(nil), // 4: com.coralogix.enrichment.v1.GetCustomEnrichmentsResponse - (*CreateCustomEnrichmentRequest)(nil), // 5: com.coralogix.enrichment.v1.CreateCustomEnrichmentRequest - (*CreateCustomEnrichmentResponse)(nil), // 6: com.coralogix.enrichment.v1.CreateCustomEnrichmentResponse - (*UpdateCustomEnrichmentRequest)(nil), // 7: com.coralogix.enrichment.v1.UpdateCustomEnrichmentRequest - (*UpdateCustomEnrichmentResponse)(nil), // 8: com.coralogix.enrichment.v1.UpdateCustomEnrichmentResponse - (*DeleteCustomEnrichmentRequest)(nil), // 9: com.coralogix.enrichment.v1.DeleteCustomEnrichmentRequest - (*DeleteCustomEnrichmentResponse)(nil), // 10: com.coralogix.enrichment.v1.DeleteCustomEnrichmentResponse - (*wrapperspb.StringValue)(nil), // 11: google.protobuf.StringValue - (*wrapperspb.BytesValue)(nil), // 12: google.protobuf.BytesValue - (*wrapperspb.UInt32Value)(nil), // 13: google.protobuf.UInt32Value - (*CustomEnrichment)(nil), // 14: com.coralogix.enrichment.v1.CustomEnrichment -} -var file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_depIdxs = []int32{ - 11, // 0: com.coralogix.enrichment.v1.File.name:type_name -> google.protobuf.StringValue - 11, // 1: com.coralogix.enrichment.v1.File.extension:type_name -> google.protobuf.StringValue - 11, // 2: com.coralogix.enrichment.v1.File.textual:type_name -> google.protobuf.StringValue - 12, // 3: com.coralogix.enrichment.v1.File.binary:type_name -> google.protobuf.BytesValue - 13, // 4: com.coralogix.enrichment.v1.GetCustomEnrichmentRequest.id:type_name -> google.protobuf.UInt32Value - 14, // 5: com.coralogix.enrichment.v1.GetCustomEnrichmentResponse.custom_enrichment:type_name -> com.coralogix.enrichment.v1.CustomEnrichment - 14, // 6: com.coralogix.enrichment.v1.GetCustomEnrichmentsResponse.custom_enrichments:type_name -> com.coralogix.enrichment.v1.CustomEnrichment - 11, // 7: com.coralogix.enrichment.v1.CreateCustomEnrichmentRequest.name:type_name -> google.protobuf.StringValue - 11, // 8: com.coralogix.enrichment.v1.CreateCustomEnrichmentRequest.description:type_name -> google.protobuf.StringValue - 0, // 9: com.coralogix.enrichment.v1.CreateCustomEnrichmentRequest.file:type_name -> com.coralogix.enrichment.v1.File - 14, // 10: com.coralogix.enrichment.v1.CreateCustomEnrichmentResponse.custom_enrichment:type_name -> com.coralogix.enrichment.v1.CustomEnrichment - 13, // 11: com.coralogix.enrichment.v1.UpdateCustomEnrichmentRequest.custom_enrichment_id:type_name -> google.protobuf.UInt32Value - 11, // 12: com.coralogix.enrichment.v1.UpdateCustomEnrichmentRequest.name:type_name -> google.protobuf.StringValue - 11, // 13: com.coralogix.enrichment.v1.UpdateCustomEnrichmentRequest.description:type_name -> google.protobuf.StringValue - 0, // 14: com.coralogix.enrichment.v1.UpdateCustomEnrichmentRequest.file:type_name -> com.coralogix.enrichment.v1.File - 14, // 15: com.coralogix.enrichment.v1.UpdateCustomEnrichmentResponse.custom_enrichment:type_name -> com.coralogix.enrichment.v1.CustomEnrichment - 13, // 16: com.coralogix.enrichment.v1.DeleteCustomEnrichmentRequest.custom_enrichment_id:type_name -> google.protobuf.UInt32Value - 1, // 17: com.coralogix.enrichment.v1.CustomEnrichmentService.GetCustomEnrichment:input_type -> com.coralogix.enrichment.v1.GetCustomEnrichmentRequest - 3, // 18: com.coralogix.enrichment.v1.CustomEnrichmentService.GetCustomEnrichments:input_type -> com.coralogix.enrichment.v1.GetCustomEnrichmentsRequest - 5, // 19: com.coralogix.enrichment.v1.CustomEnrichmentService.CreateCustomEnrichment:input_type -> com.coralogix.enrichment.v1.CreateCustomEnrichmentRequest - 7, // 20: com.coralogix.enrichment.v1.CustomEnrichmentService.UpdateCustomEnrichment:input_type -> com.coralogix.enrichment.v1.UpdateCustomEnrichmentRequest - 9, // 21: com.coralogix.enrichment.v1.CustomEnrichmentService.DeleteCustomEnrichment:input_type -> com.coralogix.enrichment.v1.DeleteCustomEnrichmentRequest - 2, // 22: com.coralogix.enrichment.v1.CustomEnrichmentService.GetCustomEnrichment:output_type -> com.coralogix.enrichment.v1.GetCustomEnrichmentResponse - 4, // 23: com.coralogix.enrichment.v1.CustomEnrichmentService.GetCustomEnrichments:output_type -> com.coralogix.enrichment.v1.GetCustomEnrichmentsResponse - 6, // 24: com.coralogix.enrichment.v1.CustomEnrichmentService.CreateCustomEnrichment:output_type -> com.coralogix.enrichment.v1.CreateCustomEnrichmentResponse - 8, // 25: com.coralogix.enrichment.v1.CustomEnrichmentService.UpdateCustomEnrichment:output_type -> com.coralogix.enrichment.v1.UpdateCustomEnrichmentResponse - 10, // 26: com.coralogix.enrichment.v1.CustomEnrichmentService.DeleteCustomEnrichment:output_type -> com.coralogix.enrichment.v1.DeleteCustomEnrichmentResponse - 22, // [22:27] is the sub-list for method output_type - 17, // [17:22] is the sub-list for method input_type - 17, // [17:17] is the sub-list for extension type_name - 17, // [17:17] is the sub-list for extension extendee - 0, // [0:17] is the sub-list for field type_name -} - -func init() { file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_init() } -func file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_init() { - if File_com_coralogix_enrichment_v1_custom_enrichment_service_proto != nil { - return - } - file_com_coralogix_enrichment_v1_custom_enrichment_proto_init() - file_com_coralogix_enrichment_v1_audit_log_proto_init() - if !protoimpl.UnsafeEnabled { - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*File); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetCustomEnrichmentRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetCustomEnrichmentResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetCustomEnrichmentsRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetCustomEnrichmentsResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateCustomEnrichmentRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateCustomEnrichmentResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdateCustomEnrichmentRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdateCustomEnrichmentResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteCustomEnrichmentRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteCustomEnrichmentResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes[0].OneofWrappers = []interface{}{ - (*File_Textual)(nil), - (*File_Binary)(nil), - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDesc, - NumEnums: 0, - NumMessages: 11, - NumExtensions: 0, - NumServices: 1, - }, - GoTypes: file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_goTypes, - DependencyIndexes: file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_depIdxs, - MessageInfos: file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_msgTypes, - }.Build() - File_com_coralogix_enrichment_v1_custom_enrichment_service_proto = out.File - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_rawDesc = nil - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_goTypes = nil - file_com_coralogix_enrichment_v1_custom_enrichment_service_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/enrichment/v1/custom_enrichment_service_grpc.pb.go b/controllers/clientset/grpc/enrichment/v1/custom_enrichment_service_grpc.pb.go deleted file mode 100644 index b4d7ce9..0000000 --- a/controllers/clientset/grpc/enrichment/v1/custom_enrichment_service_grpc.pb.go +++ /dev/null @@ -1,251 +0,0 @@ -// Code generated by protoc-gen-go-grpc. DO NOT EDIT. -// versions: -// - protoc-gen-go-grpc v1.2.0 -// - protoc v3.21.8 -// source: com/coralogix/enrichment/v1/custom_enrichment_service.proto - -package __ - -import ( - context "context" - - grpc "google.golang.org/grpc" - codes "google.golang.org/grpc/codes" - status "google.golang.org/grpc/status" -) - -// This is a compile-time assertion to ensure that this generated file -// is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 - -// CustomEnrichmentServiceClient is the client API for CustomEnrichmentService service. -// -// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. -type CustomEnrichmentServiceClient interface { - GetCustomEnrichment(ctx context.Context, in *GetCustomEnrichmentRequest, opts ...grpc.CallOption) (*GetCustomEnrichmentResponse, error) - GetCustomEnrichments(ctx context.Context, in *GetCustomEnrichmentsRequest, opts ...grpc.CallOption) (*GetCustomEnrichmentsResponse, error) - CreateCustomEnrichment(ctx context.Context, in *CreateCustomEnrichmentRequest, opts ...grpc.CallOption) (*CreateCustomEnrichmentResponse, error) - UpdateCustomEnrichment(ctx context.Context, in *UpdateCustomEnrichmentRequest, opts ...grpc.CallOption) (*UpdateCustomEnrichmentResponse, error) - DeleteCustomEnrichment(ctx context.Context, in *DeleteCustomEnrichmentRequest, opts ...grpc.CallOption) (*DeleteCustomEnrichmentResponse, error) -} - -type customEnrichmentServiceClient struct { - cc grpc.ClientConnInterface -} - -func NewCustomEnrichmentServiceClient(cc grpc.ClientConnInterface) CustomEnrichmentServiceClient { - return &customEnrichmentServiceClient{cc} -} - -func (c *customEnrichmentServiceClient) GetCustomEnrichment(ctx context.Context, in *GetCustomEnrichmentRequest, opts ...grpc.CallOption) (*GetCustomEnrichmentResponse, error) { - out := new(GetCustomEnrichmentResponse) - err := c.cc.Invoke(ctx, "/com.coralogix.enrichment.v1.CustomEnrichmentService/GetCustomEnrichment", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *customEnrichmentServiceClient) GetCustomEnrichments(ctx context.Context, in *GetCustomEnrichmentsRequest, opts ...grpc.CallOption) (*GetCustomEnrichmentsResponse, error) { - out := new(GetCustomEnrichmentsResponse) - err := c.cc.Invoke(ctx, "/com.coralogix.enrichment.v1.CustomEnrichmentService/GetCustomEnrichments", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *customEnrichmentServiceClient) CreateCustomEnrichment(ctx context.Context, in *CreateCustomEnrichmentRequest, opts ...grpc.CallOption) (*CreateCustomEnrichmentResponse, error) { - out := new(CreateCustomEnrichmentResponse) - err := c.cc.Invoke(ctx, "/com.coralogix.enrichment.v1.CustomEnrichmentService/CreateCustomEnrichment", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *customEnrichmentServiceClient) UpdateCustomEnrichment(ctx context.Context, in *UpdateCustomEnrichmentRequest, opts ...grpc.CallOption) (*UpdateCustomEnrichmentResponse, error) { - out := new(UpdateCustomEnrichmentResponse) - err := c.cc.Invoke(ctx, "/com.coralogix.enrichment.v1.CustomEnrichmentService/UpdateCustomEnrichment", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *customEnrichmentServiceClient) DeleteCustomEnrichment(ctx context.Context, in *DeleteCustomEnrichmentRequest, opts ...grpc.CallOption) (*DeleteCustomEnrichmentResponse, error) { - out := new(DeleteCustomEnrichmentResponse) - err := c.cc.Invoke(ctx, "/com.coralogix.enrichment.v1.CustomEnrichmentService/DeleteCustomEnrichment", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -// CustomEnrichmentServiceServer is the server API for CustomEnrichmentService service. -// All implementations must embed UnimplementedCustomEnrichmentServiceServer -// for forward compatibility -type CustomEnrichmentServiceServer interface { - GetCustomEnrichment(context.Context, *GetCustomEnrichmentRequest) (*GetCustomEnrichmentResponse, error) - GetCustomEnrichments(context.Context, *GetCustomEnrichmentsRequest) (*GetCustomEnrichmentsResponse, error) - CreateCustomEnrichment(context.Context, *CreateCustomEnrichmentRequest) (*CreateCustomEnrichmentResponse, error) - UpdateCustomEnrichment(context.Context, *UpdateCustomEnrichmentRequest) (*UpdateCustomEnrichmentResponse, error) - DeleteCustomEnrichment(context.Context, *DeleteCustomEnrichmentRequest) (*DeleteCustomEnrichmentResponse, error) - mustEmbedUnimplementedCustomEnrichmentServiceServer() -} - -// UnimplementedCustomEnrichmentServiceServer must be embedded to have forward compatible implementations. -type UnimplementedCustomEnrichmentServiceServer struct { -} - -func (UnimplementedCustomEnrichmentServiceServer) GetCustomEnrichment(context.Context, *GetCustomEnrichmentRequest) (*GetCustomEnrichmentResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method GetCustomEnrichment not implemented") -} -func (UnimplementedCustomEnrichmentServiceServer) GetCustomEnrichments(context.Context, *GetCustomEnrichmentsRequest) (*GetCustomEnrichmentsResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method GetCustomEnrichments not implemented") -} -func (UnimplementedCustomEnrichmentServiceServer) CreateCustomEnrichment(context.Context, *CreateCustomEnrichmentRequest) (*CreateCustomEnrichmentResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method CreateCustomEnrichment not implemented") -} -func (UnimplementedCustomEnrichmentServiceServer) UpdateCustomEnrichment(context.Context, *UpdateCustomEnrichmentRequest) (*UpdateCustomEnrichmentResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method UpdateCustomEnrichment not implemented") -} -func (UnimplementedCustomEnrichmentServiceServer) DeleteCustomEnrichment(context.Context, *DeleteCustomEnrichmentRequest) (*DeleteCustomEnrichmentResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method DeleteCustomEnrichment not implemented") -} -func (UnimplementedCustomEnrichmentServiceServer) mustEmbedUnimplementedCustomEnrichmentServiceServer() { -} - -// UnsafeCustomEnrichmentServiceServer may be embedded to opt out of forward compatibility for this service. -// Use of this interface is not recommended, as added methods to CustomEnrichmentServiceServer will -// result in compilation errors. -type UnsafeCustomEnrichmentServiceServer interface { - mustEmbedUnimplementedCustomEnrichmentServiceServer() -} - -func RegisterCustomEnrichmentServiceServer(s grpc.ServiceRegistrar, srv CustomEnrichmentServiceServer) { - s.RegisterService(&CustomEnrichmentService_ServiceDesc, srv) -} - -func _CustomEnrichmentService_GetCustomEnrichment_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(GetCustomEnrichmentRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(CustomEnrichmentServiceServer).GetCustomEnrichment(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogix.enrichment.v1.CustomEnrichmentService/GetCustomEnrichment", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(CustomEnrichmentServiceServer).GetCustomEnrichment(ctx, req.(*GetCustomEnrichmentRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _CustomEnrichmentService_GetCustomEnrichments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(GetCustomEnrichmentsRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(CustomEnrichmentServiceServer).GetCustomEnrichments(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogix.enrichment.v1.CustomEnrichmentService/GetCustomEnrichments", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(CustomEnrichmentServiceServer).GetCustomEnrichments(ctx, req.(*GetCustomEnrichmentsRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _CustomEnrichmentService_CreateCustomEnrichment_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(CreateCustomEnrichmentRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(CustomEnrichmentServiceServer).CreateCustomEnrichment(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogix.enrichment.v1.CustomEnrichmentService/CreateCustomEnrichment", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(CustomEnrichmentServiceServer).CreateCustomEnrichment(ctx, req.(*CreateCustomEnrichmentRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _CustomEnrichmentService_UpdateCustomEnrichment_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(UpdateCustomEnrichmentRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(CustomEnrichmentServiceServer).UpdateCustomEnrichment(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogix.enrichment.v1.CustomEnrichmentService/UpdateCustomEnrichment", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(CustomEnrichmentServiceServer).UpdateCustomEnrichment(ctx, req.(*UpdateCustomEnrichmentRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _CustomEnrichmentService_DeleteCustomEnrichment_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(DeleteCustomEnrichmentRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(CustomEnrichmentServiceServer).DeleteCustomEnrichment(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogix.enrichment.v1.CustomEnrichmentService/DeleteCustomEnrichment", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(CustomEnrichmentServiceServer).DeleteCustomEnrichment(ctx, req.(*DeleteCustomEnrichmentRequest)) - } - return interceptor(ctx, in, info, handler) -} - -// CustomEnrichmentService_ServiceDesc is the grpc.ServiceDesc for CustomEnrichmentService service. -// It's only intended for direct use with grpc.RegisterService, -// and not to be introspected or modified (even as a copy) -var CustomEnrichmentService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "com.coralogix.enrichment.v1.CustomEnrichmentService", - HandlerType: (*CustomEnrichmentServiceServer)(nil), - Methods: []grpc.MethodDesc{ - { - MethodName: "GetCustomEnrichment", - Handler: _CustomEnrichmentService_GetCustomEnrichment_Handler, - }, - { - MethodName: "GetCustomEnrichments", - Handler: _CustomEnrichmentService_GetCustomEnrichments_Handler, - }, - { - MethodName: "CreateCustomEnrichment", - Handler: _CustomEnrichmentService_CreateCustomEnrichment_Handler, - }, - { - MethodName: "UpdateCustomEnrichment", - Handler: _CustomEnrichmentService_UpdateCustomEnrichment_Handler, - }, - { - MethodName: "DeleteCustomEnrichment", - Handler: _CustomEnrichmentService_DeleteCustomEnrichment_Handler, - }, - }, - Streams: []grpc.StreamDesc{}, - Metadata: "com/coralogix/enrichment/v1/custom_enrichment_service.proto", -} diff --git a/controllers/clientset/grpc/enrichment/v1/enrichment.pb.go b/controllers/clientset/grpc/enrichment/v1/enrichment.pb.go deleted file mode 100644 index fa06c10..0000000 --- a/controllers/clientset/grpc/enrichment/v1/enrichment.pb.go +++ /dev/null @@ -1,174 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogix/enrichment/v1/enrichment.proto - -package __ - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type Enrichment struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` - FieldName string `protobuf:"bytes,2,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"` - EnrichmentType *EnrichmentType `protobuf:"bytes,3,opt,name=enrichment_type,json=enrichmentType,proto3" json:"enrichment_type,omitempty"` -} - -func (x *Enrichment) Reset() { - *x = Enrichment{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_enrichment_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *Enrichment) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*Enrichment) ProtoMessage() {} - -func (x *Enrichment) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_enrichment_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use Enrichments.ProtoReflect.Descriptor instead. -func (*Enrichment) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_enrichment_proto_rawDescGZIP(), []int{0} -} - -func (x *Enrichment) GetId() uint32 { - if x != nil { - return x.Id - } - return 0 -} - -func (x *Enrichment) GetFieldName() string { - if x != nil { - return x.FieldName - } - return "" -} - -func (x *Enrichment) GetEnrichmentType() *EnrichmentType { - if x != nil { - return x.EnrichmentType - } - return nil -} - -var File_com_coralogix_enrichment_v1_enrichment_proto protoreflect.FileDescriptor - -var file_com_coralogix_enrichment_v1_enrichment_proto_rawDesc = []byte{ - 0x0a, 0x2c, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2f, - 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x65, 0x6e, - 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1b, - 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, - 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x1a, 0x31, 0x63, 0x6f, 0x6d, - 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2f, 0x65, 0x6e, 0x72, 0x69, 0x63, - 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, - 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x91, - 0x01, 0x0a, 0x0a, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x0e, 0x0a, - 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, - 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x54, 0x0a, 0x0f, - 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, - 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, - 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, - 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, - 0x70, 0x65, 0x52, 0x0e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, - 0x70, 0x65, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogix_enrichment_v1_enrichment_proto_rawDescOnce sync.Once - file_com_coralogix_enrichment_v1_enrichment_proto_rawDescData = file_com_coralogix_enrichment_v1_enrichment_proto_rawDesc -) - -func file_com_coralogix_enrichment_v1_enrichment_proto_rawDescGZIP() []byte { - file_com_coralogix_enrichment_v1_enrichment_proto_rawDescOnce.Do(func() { - file_com_coralogix_enrichment_v1_enrichment_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogix_enrichment_v1_enrichment_proto_rawDescData) - }) - return file_com_coralogix_enrichment_v1_enrichment_proto_rawDescData -} - -var file_com_coralogix_enrichment_v1_enrichment_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_com_coralogix_enrichment_v1_enrichment_proto_goTypes = []interface{}{ - (*Enrichment)(nil), // 0: com.coralogix.enrichment.v1.Enrichments - (*EnrichmentType)(nil), // 1: com.coralogix.enrichment.v1.EnrichmentType -} -var file_com_coralogix_enrichment_v1_enrichment_proto_depIdxs = []int32{ - 1, // 0: com.coralogix.enrichment.v1.Enrichments.enrichment_type:type_name -> com.coralogix.enrichment.v1.EnrichmentType - 1, // [1:1] is the sub-list for method output_type - 1, // [1:1] is the sub-list for method input_type - 1, // [1:1] is the sub-list for extension type_name - 1, // [1:1] is the sub-list for extension extendee - 0, // [0:1] is the sub-list for field type_name -} - -func init() { file_com_coralogix_enrichment_v1_enrichment_proto_init() } -func file_com_coralogix_enrichment_v1_enrichment_proto_init() { - if File_com_coralogix_enrichment_v1_enrichment_proto != nil { - return - } - file_com_coralogix_enrichment_v1_enrichment_type_proto_init() - if !protoimpl.UnsafeEnabled { - file_com_coralogix_enrichment_v1_enrichment_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Enrichment); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogix_enrichment_v1_enrichment_proto_rawDesc, - NumEnums: 0, - NumMessages: 1, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogix_enrichment_v1_enrichment_proto_goTypes, - DependencyIndexes: file_com_coralogix_enrichment_v1_enrichment_proto_depIdxs, - MessageInfos: file_com_coralogix_enrichment_v1_enrichment_proto_msgTypes, - }.Build() - File_com_coralogix_enrichment_v1_enrichment_proto = out.File - file_com_coralogix_enrichment_v1_enrichment_proto_rawDesc = nil - file_com_coralogix_enrichment_v1_enrichment_proto_goTypes = nil - file_com_coralogix_enrichment_v1_enrichment_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/enrichment/v1/enrichment_request_model.pb.go b/controllers/clientset/grpc/enrichment/v1/enrichment_request_model.pb.go deleted file mode 100644 index 368b238..0000000 --- a/controllers/clientset/grpc/enrichment/v1/enrichment_request_model.pb.go +++ /dev/null @@ -1,174 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogix/enrichment/v1/enrichment_request_model.proto - -package __ - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type EnrichmentRequestModel struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - FieldName *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"` - EnrichmentType *EnrichmentType `protobuf:"bytes,2,opt,name=enrichment_type,json=enrichmentType,proto3" json:"enrichment_type,omitempty"` -} - -func (x *EnrichmentRequestModel) Reset() { - *x = EnrichmentRequestModel{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_enrichment_request_model_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *EnrichmentRequestModel) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*EnrichmentRequestModel) ProtoMessage() {} - -func (x *EnrichmentRequestModel) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_enrichment_request_model_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use EnrichmentRequestModel.ProtoReflect.Descriptor instead. -func (*EnrichmentRequestModel) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_enrichment_request_model_proto_rawDescGZIP(), []int{0} -} - -func (x *EnrichmentRequestModel) GetFieldName() *wrapperspb.StringValue { - if x != nil { - return x.FieldName - } - return nil -} - -func (x *EnrichmentRequestModel) GetEnrichmentType() *EnrichmentType { - if x != nil { - return x.EnrichmentType - } - return nil -} - -var File_com_coralogix_enrichment_v1_enrichment_request_model_proto protoreflect.FileDescriptor - -var file_com_coralogix_enrichment_v1_enrichment_request_model_proto_rawDesc = []byte{ - 0x0a, 0x3a, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2f, - 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x65, 0x6e, - 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1b, 0x63, 0x6f, - 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, - 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, - 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x31, 0x63, 0x6f, 0x6d, 0x2f, 0x63, - 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, - 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, - 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xab, 0x01, 0x0a, - 0x16, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x12, 0x3b, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, - 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, - 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, - 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x54, 0x0a, 0x0f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, - 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, - 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, - 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x72, 0x69, - 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0e, 0x65, 0x6e, 0x72, 0x69, - 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, - 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogix_enrichment_v1_enrichment_request_model_proto_rawDescOnce sync.Once - file_com_coralogix_enrichment_v1_enrichment_request_model_proto_rawDescData = file_com_coralogix_enrichment_v1_enrichment_request_model_proto_rawDesc -) - -func file_com_coralogix_enrichment_v1_enrichment_request_model_proto_rawDescGZIP() []byte { - file_com_coralogix_enrichment_v1_enrichment_request_model_proto_rawDescOnce.Do(func() { - file_com_coralogix_enrichment_v1_enrichment_request_model_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogix_enrichment_v1_enrichment_request_model_proto_rawDescData) - }) - return file_com_coralogix_enrichment_v1_enrichment_request_model_proto_rawDescData -} - -var file_com_coralogix_enrichment_v1_enrichment_request_model_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_com_coralogix_enrichment_v1_enrichment_request_model_proto_goTypes = []interface{}{ - (*EnrichmentRequestModel)(nil), // 0: com.coralogix.enrichment.v1.EnrichmentRequestModel - (*wrapperspb.StringValue)(nil), // 1: google.protobuf.StringValue - (*EnrichmentType)(nil), // 2: com.coralogix.enrichment.v1.EnrichmentType -} -var file_com_coralogix_enrichment_v1_enrichment_request_model_proto_depIdxs = []int32{ - 1, // 0: com.coralogix.enrichment.v1.EnrichmentRequestModel.field_name:type_name -> google.protobuf.StringValue - 2, // 1: com.coralogix.enrichment.v1.EnrichmentRequestModel.enrichment_type:type_name -> com.coralogix.enrichment.v1.EnrichmentType - 2, // [2:2] is the sub-list for method output_type - 2, // [2:2] is the sub-list for method input_type - 2, // [2:2] is the sub-list for extension type_name - 2, // [2:2] is the sub-list for extension extendee - 0, // [0:2] is the sub-list for field type_name -} - -func init() { file_com_coralogix_enrichment_v1_enrichment_request_model_proto_init() } -func file_com_coralogix_enrichment_v1_enrichment_request_model_proto_init() { - if File_com_coralogix_enrichment_v1_enrichment_request_model_proto != nil { - return - } - file_com_coralogix_enrichment_v1_enrichment_type_proto_init() - if !protoimpl.UnsafeEnabled { - file_com_coralogix_enrichment_v1_enrichment_request_model_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*EnrichmentRequestModel); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogix_enrichment_v1_enrichment_request_model_proto_rawDesc, - NumEnums: 0, - NumMessages: 1, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogix_enrichment_v1_enrichment_request_model_proto_goTypes, - DependencyIndexes: file_com_coralogix_enrichment_v1_enrichment_request_model_proto_depIdxs, - MessageInfos: file_com_coralogix_enrichment_v1_enrichment_request_model_proto_msgTypes, - }.Build() - File_com_coralogix_enrichment_v1_enrichment_request_model_proto = out.File - file_com_coralogix_enrichment_v1_enrichment_request_model_proto_rawDesc = nil - file_com_coralogix_enrichment_v1_enrichment_request_model_proto_goTypes = nil - file_com_coralogix_enrichment_v1_enrichment_request_model_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/enrichment/v1/enrichment_service.pb.go b/controllers/clientset/grpc/enrichment/v1/enrichment_service.pb.go deleted file mode 100644 index cf321eb..0000000 --- a/controllers/clientset/grpc/enrichment/v1/enrichment_service.pb.go +++ /dev/null @@ -1,658 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogix/enrichment/v1/enrichment_service.proto - -package __ - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type GetEnrichmentLimitRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *GetEnrichmentLimitRequest) Reset() { - *x = GetEnrichmentLimitRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetEnrichmentLimitRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetEnrichmentLimitRequest) ProtoMessage() {} - -func (x *GetEnrichmentLimitRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GetEnrichmentLimitRequest.ProtoReflect.Descriptor instead. -func (*GetEnrichmentLimitRequest) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDescGZIP(), []int{0} -} - -type GetEnrichmentLimitResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Limit uint32 `protobuf:"varint,1,opt,name=limit,proto3" json:"limit,omitempty"` -} - -func (x *GetEnrichmentLimitResponse) Reset() { - *x = GetEnrichmentLimitResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetEnrichmentLimitResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetEnrichmentLimitResponse) ProtoMessage() {} - -func (x *GetEnrichmentLimitResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GetEnrichmentLimitResponse.ProtoReflect.Descriptor instead. -func (*GetEnrichmentLimitResponse) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDescGZIP(), []int{1} -} - -func (x *GetEnrichmentLimitResponse) GetLimit() uint32 { - if x != nil { - return x.Limit - } - return 0 -} - -type GetEnrichmentsRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *GetEnrichmentsRequest) Reset() { - *x = GetEnrichmentsRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[2] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetEnrichmentsRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetEnrichmentsRequest) ProtoMessage() {} - -func (x *GetEnrichmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[2] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GetEnrichmentsRequest.ProtoReflect.Descriptor instead. -func (*GetEnrichmentsRequest) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDescGZIP(), []int{2} -} - -type GetEnrichmentsResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Enrichments []*Enrichment `protobuf:"bytes,1,rep,name=enrichments,proto3" json:"enrichments,omitempty"` -} - -func (x *GetEnrichmentsResponse) Reset() { - *x = GetEnrichmentsResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[3] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetEnrichmentsResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetEnrichmentsResponse) ProtoMessage() {} - -func (x *GetEnrichmentsResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[3] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GetEnrichmentsResponse.ProtoReflect.Descriptor instead. -func (*GetEnrichmentsResponse) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDescGZIP(), []int{3} -} - -func (x *GetEnrichmentsResponse) GetEnrichments() []*Enrichment { - if x != nil { - return x.Enrichments - } - return nil -} - -type AddEnrichmentsRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - RequestEnrichments []*EnrichmentRequestModel `protobuf:"bytes,1,rep,name=request_enrichments,json=requestEnrichments,proto3" json:"request_enrichments,omitempty"` -} - -func (x *AddEnrichmentsRequest) Reset() { - *x = AddEnrichmentsRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[4] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *AddEnrichmentsRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*AddEnrichmentsRequest) ProtoMessage() {} - -func (x *AddEnrichmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[4] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use AddEnrichmentsRequest.ProtoReflect.Descriptor instead. -func (*AddEnrichmentsRequest) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDescGZIP(), []int{4} -} - -func (x *AddEnrichmentsRequest) GetRequestEnrichments() []*EnrichmentRequestModel { - if x != nil { - return x.RequestEnrichments - } - return nil -} - -type AddEnrichmentsResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Enrichments []*Enrichment `protobuf:"bytes,1,rep,name=enrichments,proto3" json:"enrichments,omitempty"` -} - -func (x *AddEnrichmentsResponse) Reset() { - *x = AddEnrichmentsResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[5] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *AddEnrichmentsResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*AddEnrichmentsResponse) ProtoMessage() {} - -func (x *AddEnrichmentsResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[5] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use AddEnrichmentsResponse.ProtoReflect.Descriptor instead. -func (*AddEnrichmentsResponse) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDescGZIP(), []int{5} -} - -func (x *AddEnrichmentsResponse) GetEnrichments() []*Enrichment { - if x != nil { - return x.Enrichments - } - return nil -} - -type RemoveEnrichmentsRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - EnrichmentIds []*wrapperspb.UInt32Value `protobuf:"bytes,1,rep,name=enrichment_ids,json=enrichmentIds,proto3" json:"enrichment_ids,omitempty"` -} - -func (x *RemoveEnrichmentsRequest) Reset() { - *x = RemoveEnrichmentsRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[6] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *RemoveEnrichmentsRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*RemoveEnrichmentsRequest) ProtoMessage() {} - -func (x *RemoveEnrichmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[6] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use RemoveEnrichmentsRequest.ProtoReflect.Descriptor instead. -func (*RemoveEnrichmentsRequest) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDescGZIP(), []int{6} -} - -func (x *RemoveEnrichmentsRequest) GetEnrichmentIds() []*wrapperspb.UInt32Value { - if x != nil { - return x.EnrichmentIds - } - return nil -} - -type RemoveEnrichmentsResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - RemainingEnrichments []*Enrichment `protobuf:"bytes,1,rep,name=remaining_enrichments,json=remainingEnrichments,proto3" json:"remaining_enrichments,omitempty"` -} - -func (x *RemoveEnrichmentsResponse) Reset() { - *x = RemoveEnrichmentsResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[7] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *RemoveEnrichmentsResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*RemoveEnrichmentsResponse) ProtoMessage() {} - -func (x *RemoveEnrichmentsResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[7] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use RemoveEnrichmentsResponse.ProtoReflect.Descriptor instead. -func (*RemoveEnrichmentsResponse) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDescGZIP(), []int{7} -} - -func (x *RemoveEnrichmentsResponse) GetRemainingEnrichments() []*Enrichment { - if x != nil { - return x.RemainingEnrichments - } - return nil -} - -var File_com_coralogix_enrichment_v1_enrichment_service_proto protoreflect.FileDescriptor - -var file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDesc = []byte{ - 0x0a, 0x34, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2f, - 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x65, 0x6e, - 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1b, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, - 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, - 0x2e, 0x76, 0x31, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x1a, 0x2c, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x2f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, - 0x2f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x1a, 0x3a, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, - 0x2f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x65, - 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2b, 0x63, - 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2f, 0x65, 0x6e, 0x72, - 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x74, - 0x5f, 0x6c, 0x6f, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x1b, 0x0a, 0x19, 0x47, 0x65, - 0x74, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6d, 0x69, 0x74, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x32, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x45, 0x6e, - 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0x17, 0x0a, 0x15, 0x47, - 0x65, 0x74, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x22, 0x63, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x72, 0x69, 0x63, - 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x49, - 0x0a, 0x0b, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, - 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, - 0x31, 0x2e, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x0b, 0x65, 0x6e, - 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x22, 0x7d, 0x0a, 0x15, 0x41, 0x64, 0x64, - 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x12, 0x64, 0x0a, 0x13, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x65, 0x6e, - 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, - 0x33, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, - 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, - 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4d, - 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x12, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45, 0x6e, 0x72, - 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x22, 0x63, 0x0a, 0x16, 0x41, 0x64, 0x64, 0x45, - 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x12, 0x49, 0x0a, 0x0b, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, - 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, - 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, - 0x52, 0x0b, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x22, 0x5f, 0x0a, - 0x18, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, - 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x43, 0x0a, 0x0e, 0x65, 0x6e, 0x72, - 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, - 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x55, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, - 0x0d, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x22, 0x79, - 0x0a, 0x19, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, - 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5c, 0x0a, 0x15, 0x72, - 0x65, 0x6d, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, - 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x63, 0x6f, 0x6d, - 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, - 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, - 0x65, 0x6e, 0x74, 0x52, 0x14, 0x72, 0x65, 0x6d, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x45, 0x6e, - 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x32, 0xfd, 0x04, 0x0a, 0x11, 0x45, 0x6e, - 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, - 0x90, 0x01, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, - 0x74, 0x73, 0x12, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, - 0x2e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, - 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, - 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, - 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x15, 0xc2, 0xb8, 0x02, - 0x11, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x20, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, - 0x74, 0x73, 0x12, 0x90, 0x01, 0x0a, 0x0e, 0x41, 0x64, 0x64, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, - 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, - 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, - 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x64, 0x64, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, - 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, - 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x64, 0x64, 0x45, 0x6e, 0x72, 0x69, 0x63, - 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x15, - 0xc2, 0xb8, 0x02, 0x11, 0x0a, 0x0f, 0x41, 0x64, 0x64, 0x20, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, - 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x9c, 0x01, 0x0a, 0x11, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, - 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x35, 0x2e, 0x63, 0x6f, - 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, - 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, - 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, - 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, - 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x18, 0xc2, 0xb8, 0x02, 0x14, - 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x20, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, - 0x65, 0x6e, 0x74, 0x73, 0x12, 0xa2, 0x01, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x72, 0x69, - 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x36, 0x2e, 0x63, 0x6f, - 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, - 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x72, - 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, - 0x31, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x4c, - 0x69, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1b, 0xc2, 0xb8, - 0x02, 0x17, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x20, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, - 0x6e, 0x74, 0x73, 0x20, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, 0x62, - 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDescOnce sync.Once - file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDescData = file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDesc -) - -func file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDescGZIP() []byte { - file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDescOnce.Do(func() { - file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDescData) - }) - return file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDescData -} - -var file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes = make([]protoimpl.MessageInfo, 8) -var file_com_coralogix_enrichment_v1_enrichment_service_proto_goTypes = []interface{}{ - (*GetEnrichmentLimitRequest)(nil), // 0: com.coralogix.enrichment.v1.GetEnrichmentLimitRequest - (*GetEnrichmentLimitResponse)(nil), // 1: com.coralogix.enrichment.v1.GetEnrichmentLimitResponse - (*GetEnrichmentsRequest)(nil), // 2: com.coralogix.enrichment.v1.GetEnrichmentsRequest - (*GetEnrichmentsResponse)(nil), // 3: com.coralogix.enrichment.v1.GetEnrichmentsResponse - (*AddEnrichmentsRequest)(nil), // 4: com.coralogix.enrichment.v1.AddEnrichmentsRequest - (*AddEnrichmentsResponse)(nil), // 5: com.coralogix.enrichment.v1.AddEnrichmentsResponse - (*RemoveEnrichmentsRequest)(nil), // 6: com.coralogix.enrichment.v1.RemoveEnrichmentsRequest - (*RemoveEnrichmentsResponse)(nil), // 7: com.coralogix.enrichment.v1.RemoveEnrichmentsResponse - (*Enrichment)(nil), // 8: com.coralogix.enrichment.v1.Enrichments - (*EnrichmentRequestModel)(nil), // 9: com.coralogix.enrichment.v1.EnrichmentRequestModel - (*wrapperspb.UInt32Value)(nil), // 10: google.protobuf.UInt32Value -} -var file_com_coralogix_enrichment_v1_enrichment_service_proto_depIdxs = []int32{ - 8, // 0: com.coralogix.enrichment.v1.GetEnrichmentsResponse.enrichments:type_name -> com.coralogix.enrichment.v1.Enrichments - 9, // 1: com.coralogix.enrichment.v1.AddEnrichmentsRequest.request_enrichments:type_name -> com.coralogix.enrichment.v1.EnrichmentRequestModel - 8, // 2: com.coralogix.enrichment.v1.AddEnrichmentsResponse.enrichments:type_name -> com.coralogix.enrichment.v1.Enrichments - 10, // 3: com.coralogix.enrichment.v1.RemoveEnrichmentsRequest.enrichment_ids:type_name -> google.protobuf.UInt32Value - 8, // 4: com.coralogix.enrichment.v1.RemoveEnrichmentsResponse.remaining_enrichments:type_name -> com.coralogix.enrichment.v1.Enrichments - 2, // 5: com.coralogix.enrichment.v1.EnrichmentService.GetEnrichments:input_type -> com.coralogix.enrichment.v1.GetEnrichmentsRequest - 4, // 6: com.coralogix.enrichment.v1.EnrichmentService.AddEnrichments:input_type -> com.coralogix.enrichment.v1.AddEnrichmentsRequest - 6, // 7: com.coralogix.enrichment.v1.EnrichmentService.RemoveEnrichments:input_type -> com.coralogix.enrichment.v1.RemoveEnrichmentsRequest - 0, // 8: com.coralogix.enrichment.v1.EnrichmentService.GetEnrichmentLimit:input_type -> com.coralogix.enrichment.v1.GetEnrichmentLimitRequest - 3, // 9: com.coralogix.enrichment.v1.EnrichmentService.GetEnrichments:output_type -> com.coralogix.enrichment.v1.GetEnrichmentsResponse - 5, // 10: com.coralogix.enrichment.v1.EnrichmentService.AddEnrichments:output_type -> com.coralogix.enrichment.v1.AddEnrichmentsResponse - 7, // 11: com.coralogix.enrichment.v1.EnrichmentService.RemoveEnrichments:output_type -> com.coralogix.enrichment.v1.RemoveEnrichmentsResponse - 1, // 12: com.coralogix.enrichment.v1.EnrichmentService.GetEnrichmentLimit:output_type -> com.coralogix.enrichment.v1.GetEnrichmentLimitResponse - 9, // [9:13] is the sub-list for method output_type - 5, // [5:9] is the sub-list for method input_type - 5, // [5:5] is the sub-list for extension type_name - 5, // [5:5] is the sub-list for extension extendee - 0, // [0:5] is the sub-list for field type_name -} - -func init() { file_com_coralogix_enrichment_v1_enrichment_service_proto_init() } -func file_com_coralogix_enrichment_v1_enrichment_service_proto_init() { - if File_com_coralogix_enrichment_v1_enrichment_service_proto != nil { - return - } - file_com_coralogix_enrichment_v1_enrichment_proto_init() - file_com_coralogix_enrichment_v1_enrichment_request_model_proto_init() - file_com_coralogix_enrichment_v1_audit_log_proto_init() - if !protoimpl.UnsafeEnabled { - file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetEnrichmentLimitRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetEnrichmentLimitResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetEnrichmentsRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetEnrichmentsResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AddEnrichmentsRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AddEnrichmentsResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RemoveEnrichmentsRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RemoveEnrichmentsResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDesc, - NumEnums: 0, - NumMessages: 8, - NumExtensions: 0, - NumServices: 1, - }, - GoTypes: file_com_coralogix_enrichment_v1_enrichment_service_proto_goTypes, - DependencyIndexes: file_com_coralogix_enrichment_v1_enrichment_service_proto_depIdxs, - MessageInfos: file_com_coralogix_enrichment_v1_enrichment_service_proto_msgTypes, - }.Build() - File_com_coralogix_enrichment_v1_enrichment_service_proto = out.File - file_com_coralogix_enrichment_v1_enrichment_service_proto_rawDesc = nil - file_com_coralogix_enrichment_v1_enrichment_service_proto_goTypes = nil - file_com_coralogix_enrichment_v1_enrichment_service_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/enrichment/v1/enrichment_service_grpc.pb.go b/controllers/clientset/grpc/enrichment/v1/enrichment_service_grpc.pb.go deleted file mode 100644 index dcb45ca..0000000 --- a/controllers/clientset/grpc/enrichment/v1/enrichment_service_grpc.pb.go +++ /dev/null @@ -1,214 +0,0 @@ -// Code generated by protoc-gen-go-grpc. DO NOT EDIT. -// versions: -// - protoc-gen-go-grpc v1.2.0 -// - protoc v3.21.8 -// source: com/coralogix/enrichment/v1/enrichment_service.proto - -package __ - -import ( - context "context" - - grpc "google.golang.org/grpc" - codes "google.golang.org/grpc/codes" - status "google.golang.org/grpc/status" -) - -// This is a compile-time assertion to ensure that this generated file -// is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 - -// EnrichmentServiceClient is the client API for EnrichmentService service. -// -// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. -type EnrichmentServiceClient interface { - GetEnrichments(ctx context.Context, in *GetEnrichmentsRequest, opts ...grpc.CallOption) (*GetEnrichmentsResponse, error) - AddEnrichments(ctx context.Context, in *AddEnrichmentsRequest, opts ...grpc.CallOption) (*AddEnrichmentsResponse, error) - RemoveEnrichments(ctx context.Context, in *RemoveEnrichmentsRequest, opts ...grpc.CallOption) (*RemoveEnrichmentsResponse, error) - GetEnrichmentLimit(ctx context.Context, in *GetEnrichmentLimitRequest, opts ...grpc.CallOption) (*GetEnrichmentLimitResponse, error) -} - -type enrichmentServiceClient struct { - cc grpc.ClientConnInterface -} - -func NewEnrichmentServiceClient(cc grpc.ClientConnInterface) EnrichmentServiceClient { - return &enrichmentServiceClient{cc} -} - -func (c *enrichmentServiceClient) GetEnrichments(ctx context.Context, in *GetEnrichmentsRequest, opts ...grpc.CallOption) (*GetEnrichmentsResponse, error) { - out := new(GetEnrichmentsResponse) - err := c.cc.Invoke(ctx, "/com.coralogix.enrichment.v1.EnrichmentService/GetEnrichments", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *enrichmentServiceClient) AddEnrichments(ctx context.Context, in *AddEnrichmentsRequest, opts ...grpc.CallOption) (*AddEnrichmentsResponse, error) { - out := new(AddEnrichmentsResponse) - err := c.cc.Invoke(ctx, "/com.coralogix.enrichment.v1.EnrichmentService/AddEnrichments", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *enrichmentServiceClient) RemoveEnrichments(ctx context.Context, in *RemoveEnrichmentsRequest, opts ...grpc.CallOption) (*RemoveEnrichmentsResponse, error) { - out := new(RemoveEnrichmentsResponse) - err := c.cc.Invoke(ctx, "/com.coralogix.enrichment.v1.EnrichmentService/RemoveEnrichments", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *enrichmentServiceClient) GetEnrichmentLimit(ctx context.Context, in *GetEnrichmentLimitRequest, opts ...grpc.CallOption) (*GetEnrichmentLimitResponse, error) { - out := new(GetEnrichmentLimitResponse) - err := c.cc.Invoke(ctx, "/com.coralogix.enrichment.v1.EnrichmentService/GetEnrichmentLimit", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -// EnrichmentServiceServer is the server API for EnrichmentService service. -// All implementations must embed UnimplementedEnrichmentServiceServer -// for forward compatibility -type EnrichmentServiceServer interface { - GetEnrichments(context.Context, *GetEnrichmentsRequest) (*GetEnrichmentsResponse, error) - AddEnrichments(context.Context, *AddEnrichmentsRequest) (*AddEnrichmentsResponse, error) - RemoveEnrichments(context.Context, *RemoveEnrichmentsRequest) (*RemoveEnrichmentsResponse, error) - GetEnrichmentLimit(context.Context, *GetEnrichmentLimitRequest) (*GetEnrichmentLimitResponse, error) - mustEmbedUnimplementedEnrichmentServiceServer() -} - -// UnimplementedEnrichmentServiceServer must be embedded to have forward compatible implementations. -type UnimplementedEnrichmentServiceServer struct { -} - -func (UnimplementedEnrichmentServiceServer) GetEnrichments(context.Context, *GetEnrichmentsRequest) (*GetEnrichmentsResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method GetEnrichments not implemented") -} -func (UnimplementedEnrichmentServiceServer) AddEnrichments(context.Context, *AddEnrichmentsRequest) (*AddEnrichmentsResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method AddEnrichments not implemented") -} -func (UnimplementedEnrichmentServiceServer) RemoveEnrichments(context.Context, *RemoveEnrichmentsRequest) (*RemoveEnrichmentsResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method RemoveEnrichments not implemented") -} -func (UnimplementedEnrichmentServiceServer) GetEnrichmentLimit(context.Context, *GetEnrichmentLimitRequest) (*GetEnrichmentLimitResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method GetEnrichmentLimit not implemented") -} -func (UnimplementedEnrichmentServiceServer) mustEmbedUnimplementedEnrichmentServiceServer() {} - -// UnsafeEnrichmentServiceServer may be embedded to opt out of forward compatibility for this service. -// Use of this interface is not recommended, as added methods to EnrichmentServiceServer will -// result in compilation errors. -type UnsafeEnrichmentServiceServer interface { - mustEmbedUnimplementedEnrichmentServiceServer() -} - -func RegisterEnrichmentServiceServer(s grpc.ServiceRegistrar, srv EnrichmentServiceServer) { - s.RegisterService(&EnrichmentService_ServiceDesc, srv) -} - -func _EnrichmentService_GetEnrichments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(GetEnrichmentsRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(EnrichmentServiceServer).GetEnrichments(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogix.enrichment.v1.EnrichmentService/GetEnrichments", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(EnrichmentServiceServer).GetEnrichments(ctx, req.(*GetEnrichmentsRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _EnrichmentService_AddEnrichments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(AddEnrichmentsRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(EnrichmentServiceServer).AddEnrichments(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogix.enrichment.v1.EnrichmentService/AddEnrichments", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(EnrichmentServiceServer).AddEnrichments(ctx, req.(*AddEnrichmentsRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _EnrichmentService_RemoveEnrichments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(RemoveEnrichmentsRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(EnrichmentServiceServer).RemoveEnrichments(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogix.enrichment.v1.EnrichmentService/RemoveEnrichments", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(EnrichmentServiceServer).RemoveEnrichments(ctx, req.(*RemoveEnrichmentsRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _EnrichmentService_GetEnrichmentLimit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(GetEnrichmentLimitRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(EnrichmentServiceServer).GetEnrichmentLimit(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogix.enrichment.v1.EnrichmentService/GetEnrichmentLimit", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(EnrichmentServiceServer).GetEnrichmentLimit(ctx, req.(*GetEnrichmentLimitRequest)) - } - return interceptor(ctx, in, info, handler) -} - -// EnrichmentService_ServiceDesc is the grpc.ServiceDesc for EnrichmentService service. -// It's only intended for direct use with grpc.RegisterService, -// and not to be introspected or modified (even as a copy) -var EnrichmentService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "com.coralogix.enrichment.v1.EnrichmentService", - HandlerType: (*EnrichmentServiceServer)(nil), - Methods: []grpc.MethodDesc{ - { - MethodName: "GetEnrichments", - Handler: _EnrichmentService_GetEnrichments_Handler, - }, - { - MethodName: "AddEnrichments", - Handler: _EnrichmentService_AddEnrichments_Handler, - }, - { - MethodName: "RemoveEnrichments", - Handler: _EnrichmentService_RemoveEnrichments_Handler, - }, - { - MethodName: "GetEnrichmentLimit", - Handler: _EnrichmentService_GetEnrichmentLimit_Handler, - }, - }, - Streams: []grpc.StreamDesc{}, - Metadata: "com/coralogix/enrichment/v1/enrichment_service.proto", -} diff --git a/controllers/clientset/grpc/enrichment/v1/enrichment_type.pb.go b/controllers/clientset/grpc/enrichment/v1/enrichment_type.pb.go deleted file mode 100644 index 145c426..0000000 --- a/controllers/clientset/grpc/enrichment/v1/enrichment_type.pb.go +++ /dev/null @@ -1,476 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogix/enrichment/v1/enrichment_type.proto - -package __ - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type EnrichmentType struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - // Types that are assignable to Type: - // *EnrichmentType_GeoIp - // *EnrichmentType_SuspiciousIp - // *EnrichmentType_Aws - // *EnrichmentType_CustomEnrichment - Type isEnrichmentType_Type `protobuf_oneof:"type"` -} - -func (x *EnrichmentType) Reset() { - *x = EnrichmentType{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *EnrichmentType) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*EnrichmentType) ProtoMessage() {} - -func (x *EnrichmentType) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use EnrichmentType.ProtoReflect.Descriptor instead. -func (*EnrichmentType) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_enrichment_type_proto_rawDescGZIP(), []int{0} -} - -func (m *EnrichmentType) GetType() isEnrichmentType_Type { - if m != nil { - return m.Type - } - return nil -} - -func (x *EnrichmentType) GetGeoIp() *GeoIpType { - if x, ok := x.GetType().(*EnrichmentType_GeoIp); ok { - return x.GeoIp - } - return nil -} - -func (x *EnrichmentType) GetSuspiciousIp() *SuspiciousIpType { - if x, ok := x.GetType().(*EnrichmentType_SuspiciousIp); ok { - return x.SuspiciousIp - } - return nil -} - -func (x *EnrichmentType) GetAws() *AwsType { - if x, ok := x.GetType().(*EnrichmentType_Aws); ok { - return x.Aws - } - return nil -} - -func (x *EnrichmentType) GetCustomEnrichment() *CustomEnrichmentType { - if x, ok := x.GetType().(*EnrichmentType_CustomEnrichment); ok { - return x.CustomEnrichment - } - return nil -} - -type isEnrichmentType_Type interface { - isEnrichmentType_Type() -} - -type EnrichmentType_GeoIp struct { - GeoIp *GeoIpType `protobuf:"bytes,1,opt,name=geo_ip,json=geoIp,proto3,oneof"` -} - -type EnrichmentType_SuspiciousIp struct { - SuspiciousIp *SuspiciousIpType `protobuf:"bytes,2,opt,name=suspicious_ip,json=suspiciousIp,proto3,oneof"` -} - -type EnrichmentType_Aws struct { - Aws *AwsType `protobuf:"bytes,3,opt,name=aws,proto3,oneof"` -} - -type EnrichmentType_CustomEnrichment struct { - CustomEnrichment *CustomEnrichmentType `protobuf:"bytes,4,opt,name=custom_enrichment,json=customEnrichment,proto3,oneof"` -} - -func (*EnrichmentType_GeoIp) isEnrichmentType_Type() {} - -func (*EnrichmentType_SuspiciousIp) isEnrichmentType_Type() {} - -func (*EnrichmentType_Aws) isEnrichmentType_Type() {} - -func (*EnrichmentType_CustomEnrichment) isEnrichmentType_Type() {} - -type GeoIpType struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *GeoIpType) Reset() { - *x = GeoIpType{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GeoIpType) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GeoIpType) ProtoMessage() {} - -func (x *GeoIpType) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GeoIpType.ProtoReflect.Descriptor instead. -func (*GeoIpType) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_enrichment_type_proto_rawDescGZIP(), []int{1} -} - -type SuspiciousIpType struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *SuspiciousIpType) Reset() { - *x = SuspiciousIpType{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes[2] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *SuspiciousIpType) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*SuspiciousIpType) ProtoMessage() {} - -func (x *SuspiciousIpType) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes[2] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use SuspiciousIpType.ProtoReflect.Descriptor instead. -func (*SuspiciousIpType) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_enrichment_type_proto_rawDescGZIP(), []int{2} -} - -type AwsType struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - ResourceType *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=resource_type,json=resourceType,proto3" json:"resource_type,omitempty"` -} - -func (x *AwsType) Reset() { - *x = AwsType{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes[3] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *AwsType) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*AwsType) ProtoMessage() {} - -func (x *AwsType) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes[3] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use AwsType.ProtoReflect.Descriptor instead. -func (*AwsType) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_enrichment_type_proto_rawDescGZIP(), []int{3} -} - -func (x *AwsType) GetResourceType() *wrapperspb.StringValue { - if x != nil { - return x.ResourceType - } - return nil -} - -type CustomEnrichmentType struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Id *wrapperspb.UInt32Value `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` -} - -func (x *CustomEnrichmentType) Reset() { - *x = CustomEnrichmentType{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes[4] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *CustomEnrichmentType) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*CustomEnrichmentType) ProtoMessage() {} - -func (x *CustomEnrichmentType) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes[4] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use CustomEnrichmentType.ProtoReflect.Descriptor instead. -func (*CustomEnrichmentType) Descriptor() ([]byte, []int) { - return file_com_coralogix_enrichment_v1_enrichment_type_proto_rawDescGZIP(), []int{4} -} - -func (x *CustomEnrichmentType) GetId() *wrapperspb.UInt32Value { - if x != nil { - return x.Id - } - return nil -} - -var File_com_coralogix_enrichment_v1_enrichment_type_proto protoreflect.FileDescriptor - -var file_com_coralogix_enrichment_v1_enrichment_type_proto_rawDesc = []byte{ - 0x0a, 0x31, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2f, - 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x31, 0x2f, 0x65, 0x6e, - 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x12, 0x1b, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, - 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x22, 0xcb, 0x02, 0x0a, 0x0e, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x54, - 0x79, 0x70, 0x65, 0x12, 0x3f, 0x0a, 0x06, 0x67, 0x65, 0x6f, 0x5f, 0x69, 0x70, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, - 0x31, 0x2e, 0x47, 0x65, 0x6f, 0x49, 0x70, 0x54, 0x79, 0x70, 0x65, 0x48, 0x00, 0x52, 0x05, 0x67, - 0x65, 0x6f, 0x49, 0x70, 0x12, 0x54, 0x0a, 0x0d, 0x73, 0x75, 0x73, 0x70, 0x69, 0x63, 0x69, 0x6f, - 0x75, 0x73, 0x5f, 0x69, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x63, 0x6f, - 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, - 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x75, 0x73, 0x70, 0x69, 0x63, - 0x69, 0x6f, 0x75, 0x73, 0x49, 0x70, 0x54, 0x79, 0x70, 0x65, 0x48, 0x00, 0x52, 0x0c, 0x73, 0x75, - 0x73, 0x70, 0x69, 0x63, 0x69, 0x6f, 0x75, 0x73, 0x49, 0x70, 0x12, 0x38, 0x0a, 0x03, 0x61, 0x77, - 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, - 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x77, 0x73, 0x54, 0x79, 0x70, 0x65, 0x48, 0x00, 0x52, - 0x03, 0x61, 0x77, 0x73, 0x12, 0x60, 0x0a, 0x11, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x65, - 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x2e, - 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, - 0x70, 0x65, 0x48, 0x00, 0x52, 0x10, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, - 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x06, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x0b, - 0x0a, 0x09, 0x47, 0x65, 0x6f, 0x49, 0x70, 0x54, 0x79, 0x70, 0x65, 0x22, 0x12, 0x0a, 0x10, 0x53, - 0x75, 0x73, 0x70, 0x69, 0x63, 0x69, 0x6f, 0x75, 0x73, 0x49, 0x70, 0x54, 0x79, 0x70, 0x65, 0x22, - 0x4c, 0x0a, 0x07, 0x41, 0x77, 0x73, 0x54, 0x79, 0x70, 0x65, 0x12, 0x41, 0x0a, 0x0d, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, - 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x22, 0x44, 0x0a, - 0x14, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x6e, - 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2c, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x55, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, - 0x02, 0x69, 0x64, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x33, -} - -var ( - file_com_coralogix_enrichment_v1_enrichment_type_proto_rawDescOnce sync.Once - file_com_coralogix_enrichment_v1_enrichment_type_proto_rawDescData = file_com_coralogix_enrichment_v1_enrichment_type_proto_rawDesc -) - -func file_com_coralogix_enrichment_v1_enrichment_type_proto_rawDescGZIP() []byte { - file_com_coralogix_enrichment_v1_enrichment_type_proto_rawDescOnce.Do(func() { - file_com_coralogix_enrichment_v1_enrichment_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogix_enrichment_v1_enrichment_type_proto_rawDescData) - }) - return file_com_coralogix_enrichment_v1_enrichment_type_proto_rawDescData -} - -var file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_com_coralogix_enrichment_v1_enrichment_type_proto_goTypes = []interface{}{ - (*EnrichmentType)(nil), // 0: com.coralogix.enrichment.v1.EnrichmentType - (*GeoIpType)(nil), // 1: com.coralogix.enrichment.v1.GeoIpType - (*SuspiciousIpType)(nil), // 2: com.coralogix.enrichment.v1.SuspiciousIpType - (*AwsType)(nil), // 3: com.coralogix.enrichment.v1.AwsType - (*CustomEnrichmentType)(nil), // 4: com.coralogix.enrichment.v1.CustomEnrichmentType - (*wrapperspb.StringValue)(nil), // 5: google.protobuf.StringValue - (*wrapperspb.UInt32Value)(nil), // 6: google.protobuf.UInt32Value -} -var file_com_coralogix_enrichment_v1_enrichment_type_proto_depIdxs = []int32{ - 1, // 0: com.coralogix.enrichment.v1.EnrichmentType.geo_ip:type_name -> com.coralogix.enrichment.v1.GeoIpType - 2, // 1: com.coralogix.enrichment.v1.EnrichmentType.suspicious_ip:type_name -> com.coralogix.enrichment.v1.SuspiciousIpType - 3, // 2: com.coralogix.enrichment.v1.EnrichmentType.aws:type_name -> com.coralogix.enrichment.v1.AwsType - 4, // 3: com.coralogix.enrichment.v1.EnrichmentType.custom_enrichment:type_name -> com.coralogix.enrichment.v1.CustomEnrichmentType - 5, // 4: com.coralogix.enrichment.v1.AwsType.resource_type:type_name -> google.protobuf.StringValue - 6, // 5: com.coralogix.enrichment.v1.CustomEnrichmentType.id:type_name -> google.protobuf.UInt32Value - 6, // [6:6] is the sub-list for method output_type - 6, // [6:6] is the sub-list for method input_type - 6, // [6:6] is the sub-list for extension type_name - 6, // [6:6] is the sub-list for extension extendee - 0, // [0:6] is the sub-list for field type_name -} - -func init() { file_com_coralogix_enrichment_v1_enrichment_type_proto_init() } -func file_com_coralogix_enrichment_v1_enrichment_type_proto_init() { - if File_com_coralogix_enrichment_v1_enrichment_type_proto != nil { - return - } - if !protoimpl.UnsafeEnabled { - file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*EnrichmentType); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GeoIpType); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SuspiciousIpType); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AwsType); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CustomEnrichmentType); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes[0].OneofWrappers = []interface{}{ - (*EnrichmentType_GeoIp)(nil), - (*EnrichmentType_SuspiciousIp)(nil), - (*EnrichmentType_Aws)(nil), - (*EnrichmentType_CustomEnrichment)(nil), - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogix_enrichment_v1_enrichment_type_proto_rawDesc, - NumEnums: 0, - NumMessages: 5, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogix_enrichment_v1_enrichment_type_proto_goTypes, - DependencyIndexes: file_com_coralogix_enrichment_v1_enrichment_type_proto_depIdxs, - MessageInfos: file_com_coralogix_enrichment_v1_enrichment_type_proto_msgTypes, - }.Build() - File_com_coralogix_enrichment_v1_enrichment_type_proto = out.File - file_com_coralogix_enrichment_v1_enrichment_type_proto_rawDesc = nil - file_com_coralogix_enrichment_v1_enrichment_type_proto_goTypes = nil - file_com_coralogix_enrichment_v1_enrichment_type_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/logs2metrics/v2/audit_log.pb.go b/controllers/clientset/grpc/logs2metrics/v2/audit_log.pb.go deleted file mode 100644 index e53b5ba..0000000 --- a/controllers/clientset/grpc/logs2metrics/v2/audit_log.pb.go +++ /dev/null @@ -1,183 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/logs2metrics/v2/audit_log.proto - -package __ - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - descriptorpb "google.golang.org/protobuf/types/descriptorpb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type AuditLogDescription struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Description *string `protobuf:"bytes,1,opt,name=description,proto3,oneof" json:"description,omitempty"` -} - -func (x *AuditLogDescription) Reset() { - *x = AuditLogDescription{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_logs2metrics_v2_audit_log_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *AuditLogDescription) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*AuditLogDescription) ProtoMessage() {} - -func (x *AuditLogDescription) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_logs2metrics_v2_audit_log_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use AuditLogDescription.ProtoReflect.Descriptor instead. -func (*AuditLogDescription) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_logs2metrics_v2_audit_log_proto_rawDescGZIP(), []int{0} -} - -func (x *AuditLogDescription) GetDescription() string { - if x != nil && x.Description != nil { - return *x.Description - } - return "" -} - -var file_com_coralogixapis_logs2metrics_v2_audit_log_proto_extTypes = []protoimpl.ExtensionInfo{ - { - ExtendedType: (*descriptorpb.MethodOptions)(nil), - ExtensionType: (*AuditLogDescription)(nil), - Field: 5002, - Name: "com.coralogixapis.logs2metrics.v2.audit_log_description", - Tag: "bytes,5002,opt,name=audit_log_description", - Filename: "com/coralogixapis/logs2metrics/v2/audit_log.proto", - }, -} - -// Extension fields to descriptorpb.MethodOptions. -var ( - // optional com.coralogixapis.logs2metrics.v2.AuditLogDescription audit_log_description = 5002; - E_AuditLogDescription = &file_com_coralogixapis_logs2metrics_v2_audit_log_proto_extTypes[0] -) - -var File_com_coralogixapis_logs2metrics_v2_audit_log_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_logs2metrics_v2_audit_log_proto_rawDesc = []byte{ - 0x0a, 0x31, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, - 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, - 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, - 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, - 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x4c, 0x0a, 0x13, 0x41, 0x75, 0x64, 0x69, - 0x74, 0x4c, 0x6f, 0x67, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, - 0x25, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, - 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, - 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x8e, 0x01, 0x0a, 0x15, 0x61, 0x75, 0x64, 0x69, 0x74, - 0x5f, 0x6c, 0x6f, 0x67, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, - 0x12, 0x1e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, - 0x18, 0x8a, 0x27, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, - 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x41, 0x75, 0x64, 0x69, - 0x74, 0x4c, 0x6f, 0x67, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, - 0x13, 0x61, 0x75, 0x64, 0x69, 0x74, 0x4c, 0x6f, 0x67, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, - 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, 0x62, 0x06, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_logs2metrics_v2_audit_log_proto_rawDescOnce sync.Once - file_com_coralogixapis_logs2metrics_v2_audit_log_proto_rawDescData = file_com_coralogixapis_logs2metrics_v2_audit_log_proto_rawDesc -) - -func file_com_coralogixapis_logs2metrics_v2_audit_log_proto_rawDescGZIP() []byte { - file_com_coralogixapis_logs2metrics_v2_audit_log_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_logs2metrics_v2_audit_log_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_logs2metrics_v2_audit_log_proto_rawDescData) - }) - return file_com_coralogixapis_logs2metrics_v2_audit_log_proto_rawDescData -} - -var file_com_coralogixapis_logs2metrics_v2_audit_log_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_com_coralogixapis_logs2metrics_v2_audit_log_proto_goTypes = []interface{}{ - (*AuditLogDescription)(nil), // 0: com.coralogixapis.logs2metrics.v2.AuditLogDescription - (*descriptorpb.MethodOptions)(nil), // 1: google.protobuf.MethodOptions -} -var file_com_coralogixapis_logs2metrics_v2_audit_log_proto_depIdxs = []int32{ - 1, // 0: com.coralogixapis.logs2metrics.v2.audit_log_description:extendee -> google.protobuf.MethodOptions - 0, // 1: com.coralogixapis.logs2metrics.v2.audit_log_description:type_name -> com.coralogixapis.logs2metrics.v2.AuditLogDescription - 2, // [2:2] is the sub-list for method output_type - 2, // [2:2] is the sub-list for method input_type - 1, // [1:2] is the sub-list for extension type_name - 0, // [0:1] is the sub-list for extension extendee - 0, // [0:0] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_logs2metrics_v2_audit_log_proto_init() } -func file_com_coralogixapis_logs2metrics_v2_audit_log_proto_init() { - if File_com_coralogixapis_logs2metrics_v2_audit_log_proto != nil { - return - } - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_logs2metrics_v2_audit_log_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AuditLogDescription); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - file_com_coralogixapis_logs2metrics_v2_audit_log_proto_msgTypes[0].OneofWrappers = []interface{}{} - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_logs2metrics_v2_audit_log_proto_rawDesc, - NumEnums: 0, - NumMessages: 1, - NumExtensions: 1, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_logs2metrics_v2_audit_log_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_logs2metrics_v2_audit_log_proto_depIdxs, - MessageInfos: file_com_coralogixapis_logs2metrics_v2_audit_log_proto_msgTypes, - ExtensionInfos: file_com_coralogixapis_logs2metrics_v2_audit_log_proto_extTypes, - }.Build() - File_com_coralogixapis_logs2metrics_v2_audit_log_proto = out.File - file_com_coralogixapis_logs2metrics_v2_audit_log_proto_rawDesc = nil - file_com_coralogixapis_logs2metrics_v2_audit_log_proto_goTypes = nil - file_com_coralogixapis_logs2metrics_v2_audit_log_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/logs2metrics/v2/logs2metrics_definition.pb.go b/controllers/clientset/grpc/logs2metrics/v2/logs2metrics_definition.pb.go deleted file mode 100644 index 6da7ce3..0000000 --- a/controllers/clientset/grpc/logs2metrics/v2/logs2metrics_definition.pb.go +++ /dev/null @@ -1,502 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/logs2metrics/v2/logs2metrics_definition.proto - -package __ - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - _ "google.golang.org/protobuf/types/descriptorpb" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type L2M struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Id *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` - Name *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` - Description *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` - Query *LogsQuery `protobuf:"bytes,5,opt,name=query,proto3" json:"query,omitempty"` - CreateTime *wrapperspb.StringValue `protobuf:"bytes,8,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"` - UpdateTime *wrapperspb.StringValue `protobuf:"bytes,9,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"` - Permutations *L2MPermutations `protobuf:"bytes,10,opt,name=permutations,proto3" json:"permutations,omitempty"` - MetricLabels []*MetricLabel `protobuf:"bytes,12,rep,name=metric_labels,json=metricLabels,proto3" json:"metric_labels,omitempty"` - MetricFields []*MetricField `protobuf:"bytes,13,rep,name=metric_fields,json=metricFields,proto3" json:"metric_fields,omitempty"` -} - -func (x *L2M) Reset() { - *x = L2M{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *L2M) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*L2M) ProtoMessage() {} - -func (x *L2M) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use L2M.ProtoReflect.Descriptor instead. -func (*L2M) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_rawDescGZIP(), []int{0} -} - -func (x *L2M) GetId() *wrapperspb.StringValue { - if x != nil { - return x.Id - } - return nil -} - -func (x *L2M) GetName() *wrapperspb.StringValue { - if x != nil { - return x.Name - } - return nil -} - -func (x *L2M) GetDescription() *wrapperspb.StringValue { - if x != nil { - return x.Description - } - return nil -} - -func (x *L2M) GetQuery() *LogsQuery { - if x != nil { - return x.Query - } - return nil -} - -func (x *L2M) GetCreateTime() *wrapperspb.StringValue { - if x != nil { - return x.CreateTime - } - return nil -} - -func (x *L2M) GetUpdateTime() *wrapperspb.StringValue { - if x != nil { - return x.UpdateTime - } - return nil -} - -func (x *L2M) GetPermutations() *L2MPermutations { - if x != nil { - return x.Permutations - } - return nil -} - -func (x *L2M) GetMetricLabels() []*MetricLabel { - if x != nil { - return x.MetricLabels - } - return nil -} - -func (x *L2M) GetMetricFields() []*MetricField { - if x != nil { - return x.MetricFields - } - return nil -} - -type L2MPermutations struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Limit int32 `protobuf:"varint,1,opt,name=limit,proto3" json:"limit,omitempty"` - HasExceededLimit bool `protobuf:"varint,2,opt,name=has_exceeded_limit,json=hasExceededLimit,proto3" json:"has_exceeded_limit,omitempty"` -} - -func (x *L2MPermutations) Reset() { - *x = L2MPermutations{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *L2MPermutations) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*L2MPermutations) ProtoMessage() {} - -func (x *L2MPermutations) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use L2MPermutations.ProtoReflect.Descriptor instead. -func (*L2MPermutations) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_rawDescGZIP(), []int{1} -} - -func (x *L2MPermutations) GetLimit() int32 { - if x != nil { - return x.Limit - } - return 0 -} - -func (x *L2MPermutations) GetHasExceededLimit() bool { - if x != nil { - return x.HasExceededLimit - } - return false -} - -type MetricLabel struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - TargetLabel *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=target_label,json=targetLabel,proto3" json:"target_label,omitempty"` - SourceField *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=source_field,json=sourceField,proto3" json:"source_field,omitempty"` -} - -func (x *MetricLabel) Reset() { - *x = MetricLabel{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_msgTypes[2] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *MetricLabel) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*MetricLabel) ProtoMessage() {} - -func (x *MetricLabel) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_msgTypes[2] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use MetricLabel.ProtoReflect.Descriptor instead. -func (*MetricLabel) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_rawDescGZIP(), []int{2} -} - -func (x *MetricLabel) GetTargetLabel() *wrapperspb.StringValue { - if x != nil { - return x.TargetLabel - } - return nil -} - -func (x *MetricLabel) GetSourceField() *wrapperspb.StringValue { - if x != nil { - return x.SourceField - } - return nil -} - -type MetricField struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - TargetBaseMetricName *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=target_base_metric_name,json=targetBaseMetricName,proto3" json:"target_base_metric_name,omitempty"` - SourceField *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=source_field,json=sourceField,proto3" json:"source_field,omitempty"` -} - -func (x *MetricField) Reset() { - *x = MetricField{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_msgTypes[3] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *MetricField) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*MetricField) ProtoMessage() {} - -func (x *MetricField) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_msgTypes[3] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use MetricField.ProtoReflect.Descriptor instead. -func (*MetricField) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_rawDescGZIP(), []int{3} -} - -func (x *MetricField) GetTargetBaseMetricName() *wrapperspb.StringValue { - if x != nil { - return x.TargetBaseMetricName - } - return nil -} - -func (x *MetricField) GetSourceField() *wrapperspb.StringValue { - if x != nil { - return x.SourceField - } - return nil -} - -var File_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_rawDesc = []byte{ - 0x0a, 0x3f, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, - 0x2f, 0x76, 0x32, 0x2f, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, - 0x5f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x12, 0x21, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, - 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, - 0x73, 0x2e, 0x76, 0x32, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x32, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, - 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, - 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2f, 0x76, 0x32, 0x2f, 0x6c, 0x6f, 0x67, 0x73, 0x5f, 0x71, - 0x75, 0x65, 0x72, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xe9, 0x04, 0x0a, 0x03, 0x4c, - 0x32, 0x4d, 0x12, 0x2c, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, - 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, - 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x02, 0x69, 0x64, - 0x12, 0x30, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, - 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, - 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x04, 0x6e, 0x61, - 0x6d, 0x65, 0x12, 0x3e, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, - 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, - 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, - 0x6f, 0x6e, 0x12, 0x42, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x2c, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, - 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, - 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x6f, 0x67, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, - 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x12, 0x3d, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, - 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, - 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, - 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x3d, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, - 0x74, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, - 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, - 0x54, 0x69, 0x6d, 0x65, 0x12, 0x56, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x6d, 0x75, 0x74, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, - 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, - 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, - 0x32, 0x4d, 0x50, 0x65, 0x72, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x0c, - 0x70, 0x65, 0x72, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x53, 0x0a, 0x0d, - 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x18, 0x0c, 0x20, - 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, - 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x4c, 0x61, - 0x62, 0x65, 0x6c, 0x52, 0x0c, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x4c, 0x61, 0x62, 0x65, 0x6c, - 0x73, 0x12, 0x53, 0x0a, 0x0d, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x66, 0x69, 0x65, 0x6c, - 0x64, 0x73, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, - 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, - 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4d, 0x65, 0x74, - 0x72, 0x69, 0x63, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x0c, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, - 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x22, 0x55, 0x0a, 0x0f, 0x4c, 0x32, 0x4d, 0x50, 0x65, 0x72, - 0x6d, 0x75, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, - 0x69, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, - 0x2c, 0x0a, 0x12, 0x68, 0x61, 0x73, 0x5f, 0x65, 0x78, 0x63, 0x65, 0x65, 0x64, 0x65, 0x64, 0x5f, - 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x68, 0x61, 0x73, - 0x45, 0x78, 0x63, 0x65, 0x65, 0x64, 0x65, 0x64, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0x8f, 0x01, - 0x0a, 0x0b, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x3f, 0x0a, - 0x0c, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, - 0x65, 0x52, 0x0b, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x3f, - 0x0a, 0x0c, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, - 0x75, 0x65, 0x52, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x22, - 0xa3, 0x01, 0x0a, 0x0b, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, - 0x53, 0x0a, 0x17, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x6d, - 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x14, - 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x42, 0x61, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, - 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3f, 0x0a, 0x0c, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x66, - 0x69, 0x65, 0x6c, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, - 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_rawDescOnce sync.Once - file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_rawDescData = file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_rawDesc -) - -func file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_rawDescGZIP() []byte { - file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_rawDescData) - }) - return file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_rawDescData -} - -var file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_goTypes = []interface{}{ - (*L2M)(nil), // 0: com.coralogixapis.logs2metrics.v2.L2M - (*L2MPermutations)(nil), // 1: com.coralogixapis.logs2metrics.v2.L2MPermutations - (*MetricLabel)(nil), // 2: com.coralogixapis.logs2metrics.v2.MetricLabel - (*MetricField)(nil), // 3: com.coralogixapis.logs2metrics.v2.MetricField - (*wrapperspb.StringValue)(nil), // 4: google.protobuf.StringValue - (*LogsQuery)(nil), // 5: com.coralogixapis.logs2metrics.v2.LogsQuery -} -var file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_depIdxs = []int32{ - 4, // 0: com.coralogixapis.logs2metrics.v2.L2M.id:type_name -> google.protobuf.StringValue - 4, // 1: com.coralogixapis.logs2metrics.v2.L2M.name:type_name -> google.protobuf.StringValue - 4, // 2: com.coralogixapis.logs2metrics.v2.L2M.description:type_name -> google.protobuf.StringValue - 5, // 3: com.coralogixapis.logs2metrics.v2.L2M.query:type_name -> com.coralogixapis.logs2metrics.v2.LogsQuery - 4, // 4: com.coralogixapis.logs2metrics.v2.L2M.create_time:type_name -> google.protobuf.StringValue - 4, // 5: com.coralogixapis.logs2metrics.v2.L2M.update_time:type_name -> google.protobuf.StringValue - 1, // 6: com.coralogixapis.logs2metrics.v2.L2M.permutations:type_name -> com.coralogixapis.logs2metrics.v2.L2MPermutations - 2, // 7: com.coralogixapis.logs2metrics.v2.L2M.metric_labels:type_name -> com.coralogixapis.logs2metrics.v2.MetricLabel - 3, // 8: com.coralogixapis.logs2metrics.v2.L2M.metric_fields:type_name -> com.coralogixapis.logs2metrics.v2.MetricField - 4, // 9: com.coralogixapis.logs2metrics.v2.MetricLabel.target_label:type_name -> google.protobuf.StringValue - 4, // 10: com.coralogixapis.logs2metrics.v2.MetricLabel.source_field:type_name -> google.protobuf.StringValue - 4, // 11: com.coralogixapis.logs2metrics.v2.MetricField.target_base_metric_name:type_name -> google.protobuf.StringValue - 4, // 12: com.coralogixapis.logs2metrics.v2.MetricField.source_field:type_name -> google.protobuf.StringValue - 13, // [13:13] is the sub-list for method output_type - 13, // [13:13] is the sub-list for method input_type - 13, // [13:13] is the sub-list for extension type_name - 13, // [13:13] is the sub-list for extension extendee - 0, // [0:13] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_init() } -func file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_init() { - if File_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto != nil { - return - } - file_com_coralogixapis_logs2metrics_v2_logs_query_proto_init() - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*L2M); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*L2MPermutations); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricLabel); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricField); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_rawDesc, - NumEnums: 0, - NumMessages: 4, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_depIdxs, - MessageInfos: file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_msgTypes, - }.Build() - File_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto = out.File - file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_rawDesc = nil - file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_goTypes = nil - file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/logs2metrics/v2/logs2metrics_service.pb.go b/controllers/clientset/grpc/logs2metrics/v2/logs2metrics_service.pb.go deleted file mode 100644 index 93062d8..0000000 --- a/controllers/clientset/grpc/logs2metrics/v2/logs2metrics_service.pb.go +++ /dev/null @@ -1,972 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/logs2metrics/v2/logs2metrics_service.proto - -package __ - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - _ "google.golang.org/protobuf/types/descriptorpb" - emptypb "google.golang.org/protobuf/types/known/emptypb" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type CreateL2MRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - L2M *L2M `protobuf:"bytes,1,opt,name=l2m,proto3" json:"l2m,omitempty"` -} - -func (x *CreateL2MRequest) Reset() { - *x = CreateL2MRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *CreateL2MRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*CreateL2MRequest) ProtoMessage() {} - -func (x *CreateL2MRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use CreateL2MRequest.ProtoReflect.Descriptor instead. -func (*CreateL2MRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDescGZIP(), []int{0} -} - -func (x *CreateL2MRequest) GetL2M() *L2M { - if x != nil { - return x.L2M - } - return nil -} - -type ListL2MRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *ListL2MRequest) Reset() { - *x = ListL2MRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ListL2MRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ListL2MRequest) ProtoMessage() {} - -func (x *ListL2MRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[1] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ListL2MRequest.ProtoReflect.Descriptor instead. -func (*ListL2MRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDescGZIP(), []int{1} -} - -type ListL2MResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - L2M []*L2M `protobuf:"bytes,1,rep,name=l2m,proto3" json:"l2m,omitempty"` -} - -func (x *ListL2MResponse) Reset() { - *x = ListL2MResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[2] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ListL2MResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ListL2MResponse) ProtoMessage() {} - -func (x *ListL2MResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[2] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ListL2MResponse.ProtoReflect.Descriptor instead. -func (*ListL2MResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDescGZIP(), []int{2} -} - -func (x *ListL2MResponse) GetL2M() []*L2M { - if x != nil { - return x.L2M - } - return nil -} - -type ReplaceL2MRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - L2M *L2M `protobuf:"bytes,1,opt,name=l2m,proto3" json:"l2m,omitempty"` -} - -func (x *ReplaceL2MRequest) Reset() { - *x = ReplaceL2MRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[3] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ReplaceL2MRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ReplaceL2MRequest) ProtoMessage() {} - -func (x *ReplaceL2MRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[3] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ReplaceL2MRequest.ProtoReflect.Descriptor instead. -func (*ReplaceL2MRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDescGZIP(), []int{3} -} - -func (x *ReplaceL2MRequest) GetL2M() *L2M { - if x != nil { - return x.L2M - } - return nil -} - -type GetL2MRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Id *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` -} - -func (x *GetL2MRequest) Reset() { - *x = GetL2MRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[4] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *GetL2MRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*GetL2MRequest) ProtoMessage() {} - -func (x *GetL2MRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[4] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use GetL2MRequest.ProtoReflect.Descriptor instead. -func (*GetL2MRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDescGZIP(), []int{4} -} - -func (x *GetL2MRequest) GetId() *wrapperspb.StringValue { - if x != nil { - return x.Id - } - return nil -} - -type DeleteL2MRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Id *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` -} - -func (x *DeleteL2MRequest) Reset() { - *x = DeleteL2MRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[5] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *DeleteL2MRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*DeleteL2MRequest) ProtoMessage() {} - -func (x *DeleteL2MRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[5] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use DeleteL2MRequest.ProtoReflect.Descriptor instead. -func (*DeleteL2MRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDescGZIP(), []int{5} -} - -func (x *DeleteL2MRequest) GetId() *wrapperspb.StringValue { - if x != nil { - return x.Id - } - return nil -} - -type L2MExecutionRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - // Types that are assignable to Request: - // *L2MExecutionRequest_Create - // *L2MExecutionRequest_Replace - // *L2MExecutionRequest_Delete - Request isL2MExecutionRequest_Request `protobuf_oneof:"request"` -} - -func (x *L2MExecutionRequest) Reset() { - *x = L2MExecutionRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[6] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *L2MExecutionRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*L2MExecutionRequest) ProtoMessage() {} - -func (x *L2MExecutionRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[6] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use L2MExecutionRequest.ProtoReflect.Descriptor instead. -func (*L2MExecutionRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDescGZIP(), []int{6} -} - -func (m *L2MExecutionRequest) GetRequest() isL2MExecutionRequest_Request { - if m != nil { - return m.Request - } - return nil -} - -func (x *L2MExecutionRequest) GetCreate() *CreateL2MRequest { - if x, ok := x.GetRequest().(*L2MExecutionRequest_Create); ok { - return x.Create - } - return nil -} - -func (x *L2MExecutionRequest) GetReplace() *ReplaceL2MRequest { - if x, ok := x.GetRequest().(*L2MExecutionRequest_Replace); ok { - return x.Replace - } - return nil -} - -func (x *L2MExecutionRequest) GetDelete() *DeleteL2MRequest { - if x, ok := x.GetRequest().(*L2MExecutionRequest_Delete); ok { - return x.Delete - } - return nil -} - -type isL2MExecutionRequest_Request interface { - isL2MExecutionRequest_Request() -} - -type L2MExecutionRequest_Create struct { - Create *CreateL2MRequest `protobuf:"bytes,1,opt,name=create,proto3,oneof"` -} - -type L2MExecutionRequest_Replace struct { - Replace *ReplaceL2MRequest `protobuf:"bytes,2,opt,name=replace,proto3,oneof"` -} - -type L2MExecutionRequest_Delete struct { - Delete *DeleteL2MRequest `protobuf:"bytes,3,opt,name=delete,proto3,oneof"` -} - -func (*L2MExecutionRequest_Create) isL2MExecutionRequest_Request() {} - -func (*L2MExecutionRequest_Replace) isL2MExecutionRequest_Request() {} - -func (*L2MExecutionRequest_Delete) isL2MExecutionRequest_Request() {} - -type AtomicBatchExecuteL2MRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Requests []*L2MExecutionRequest `protobuf:"bytes,1,rep,name=requests,proto3" json:"requests,omitempty"` -} - -func (x *AtomicBatchExecuteL2MRequest) Reset() { - *x = AtomicBatchExecuteL2MRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[7] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *AtomicBatchExecuteL2MRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*AtomicBatchExecuteL2MRequest) ProtoMessage() {} - -func (x *AtomicBatchExecuteL2MRequest) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[7] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use AtomicBatchExecuteL2MRequest.ProtoReflect.Descriptor instead. -func (*AtomicBatchExecuteL2MRequest) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDescGZIP(), []int{7} -} - -func (x *AtomicBatchExecuteL2MRequest) GetRequests() []*L2MExecutionRequest { - if x != nil { - return x.Requests - } - return nil -} - -type L2MExecutionResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - // Types that are assignable to Response: - // *L2MExecutionResponse_Created - // *L2MExecutionResponse_Replaced - // *L2MExecutionResponse_Deleted - Response isL2MExecutionResponse_Response `protobuf_oneof:"response"` -} - -func (x *L2MExecutionResponse) Reset() { - *x = L2MExecutionResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[8] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *L2MExecutionResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*L2MExecutionResponse) ProtoMessage() {} - -func (x *L2MExecutionResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[8] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use L2MExecutionResponse.ProtoReflect.Descriptor instead. -func (*L2MExecutionResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDescGZIP(), []int{8} -} - -func (m *L2MExecutionResponse) GetResponse() isL2MExecutionResponse_Response { - if m != nil { - return m.Response - } - return nil -} - -func (x *L2MExecutionResponse) GetCreated() *CreateL2MRequest { - if x, ok := x.GetResponse().(*L2MExecutionResponse_Created); ok { - return x.Created - } - return nil -} - -func (x *L2MExecutionResponse) GetReplaced() *ReplaceL2MRequest { - if x, ok := x.GetResponse().(*L2MExecutionResponse_Replaced); ok { - return x.Replaced - } - return nil -} - -func (x *L2MExecutionResponse) GetDeleted() *DeleteL2MRequest { - if x, ok := x.GetResponse().(*L2MExecutionResponse_Deleted); ok { - return x.Deleted - } - return nil -} - -type isL2MExecutionResponse_Response interface { - isL2MExecutionResponse_Response() -} - -type L2MExecutionResponse_Created struct { - Created *CreateL2MRequest `protobuf:"bytes,1,opt,name=created,proto3,oneof"` -} - -type L2MExecutionResponse_Replaced struct { - Replaced *ReplaceL2MRequest `protobuf:"bytes,2,opt,name=replaced,proto3,oneof"` -} - -type L2MExecutionResponse_Deleted struct { - Deleted *DeleteL2MRequest `protobuf:"bytes,3,opt,name=deleted,proto3,oneof"` -} - -func (*L2MExecutionResponse_Created) isL2MExecutionResponse_Response() {} - -func (*L2MExecutionResponse_Replaced) isL2MExecutionResponse_Response() {} - -func (*L2MExecutionResponse_Deleted) isL2MExecutionResponse_Response() {} - -type AtomicBatchExecuteL2MResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - MatchingResponses []*L2MExecutionResponse `protobuf:"bytes,1,rep,name=matching_responses,json=matchingResponses,proto3" json:"matching_responses,omitempty"` -} - -func (x *AtomicBatchExecuteL2MResponse) Reset() { - *x = AtomicBatchExecuteL2MResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[9] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *AtomicBatchExecuteL2MResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*AtomicBatchExecuteL2MResponse) ProtoMessage() {} - -func (x *AtomicBatchExecuteL2MResponse) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[9] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use AtomicBatchExecuteL2MResponse.ProtoReflect.Descriptor instead. -func (*AtomicBatchExecuteL2MResponse) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDescGZIP(), []int{9} -} - -func (x *AtomicBatchExecuteL2MResponse) GetMatchingResponses() []*L2MExecutionResponse { - if x != nil { - return x.MatchingResponses - } - return nil -} - -var File_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDesc = []byte{ - 0x0a, 0x3c, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, - 0x2f, 0x76, 0x32, 0x2f, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, - 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, - 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, - 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, - 0x32, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, - 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, - 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, - 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, - 0x31, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, - 0x69, 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2f, - 0x76, 0x32, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x1a, 0x32, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, - 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, - 0x63, 0x73, 0x2f, 0x76, 0x32, 0x2f, 0x6c, 0x6f, 0x67, 0x73, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, - 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3f, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x73, - 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2f, 0x76, 0x32, 0x2f, 0x6c, 0x6f, 0x67, 0x73, - 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x5f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, - 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x4c, 0x0a, 0x10, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, - 0x4c, 0x32, 0x4d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x03, 0x6c, 0x32, - 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, - 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x32, 0x4d, 0x52, - 0x03, 0x6c, 0x32, 0x6d, 0x22, 0x10, 0x0a, 0x0e, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x32, 0x4d, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x4b, 0x0a, 0x0f, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x32, - 0x4d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x03, 0x6c, 0x32, 0x6d, - 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, - 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, 0x32, - 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x32, 0x4d, 0x52, 0x03, - 0x6c, 0x32, 0x6d, 0x22, 0x4d, 0x0a, 0x11, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x4c, 0x32, - 0x4d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x38, 0x0a, 0x03, 0x6c, 0x32, 0x6d, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, - 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, - 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x32, 0x4d, 0x52, 0x03, 0x6c, - 0x32, 0x6d, 0x22, 0x3d, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x4c, 0x32, 0x4d, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x02, 0x69, - 0x64, 0x22, 0x40, 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4c, 0x32, 0x4d, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, - 0x02, 0x69, 0x64, 0x22, 0x90, 0x02, 0x0a, 0x13, 0x4c, 0x32, 0x4d, 0x45, 0x78, 0x65, 0x63, 0x75, - 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x4d, 0x0a, 0x06, 0x63, - 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x63, 0x6f, - 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, - 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, - 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x32, 0x4d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x50, 0x0a, 0x07, 0x72, 0x65, - 0x70, 0x6c, 0x61, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x63, 0x6f, - 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, - 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, - 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x4c, 0x32, 0x4d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x48, 0x00, 0x52, 0x07, 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x12, 0x4d, 0x0a, 0x06, - 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x63, - 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, - 0x2e, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, - 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4c, 0x32, 0x4d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x48, 0x00, 0x52, 0x06, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x42, 0x09, 0x0a, 0x07, 0x72, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x72, 0x0a, 0x1c, 0x41, 0x74, 0x6f, 0x6d, 0x69, 0x63, - 0x42, 0x61, 0x74, 0x63, 0x68, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x4c, 0x32, 0x4d, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x52, 0x0a, 0x08, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, - 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, - 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x32, 0x4d, - 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x52, 0x08, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x73, 0x22, 0x98, 0x02, 0x0a, 0x14, 0x4c, - 0x32, 0x4d, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x12, 0x4f, 0x0a, 0x07, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, - 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, - 0x32, 0x4d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x07, 0x63, 0x72, 0x65, - 0x61, 0x74, 0x65, 0x64, 0x12, 0x52, 0x0a, 0x08, 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x64, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, - 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, 0x32, - 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x61, - 0x63, 0x65, 0x4c, 0x32, 0x4d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x08, - 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x64, 0x12, 0x4f, 0x0a, 0x07, 0x64, 0x65, 0x6c, 0x65, - 0x74, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, - 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, - 0x6c, 0x65, 0x74, 0x65, 0x4c, 0x32, 0x4d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, - 0x52, 0x07, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x72, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x87, 0x01, 0x0a, 0x1d, 0x41, 0x74, 0x6f, 0x6d, 0x69, 0x63, - 0x42, 0x61, 0x74, 0x63, 0x68, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x4c, 0x32, 0x4d, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x66, 0x0a, 0x12, 0x6d, 0x61, 0x74, 0x63, 0x68, - 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, - 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, - 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x32, 0x4d, 0x45, 0x78, 0x65, 0x63, 0x75, - 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x11, 0x6d, 0x61, - 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x32, - 0x89, 0x08, 0x0a, 0x12, 0x4c, 0x6f, 0x67, 0x73, 0x32, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x53, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x9f, 0x01, 0x0a, 0x09, 0x43, 0x72, 0x65, 0x61, 0x74, - 0x65, 0x4c, 0x32, 0x4d, 0x12, 0x33, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, - 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, - 0x32, 0x4d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, - 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x32, - 0x4d, 0x22, 0x35, 0xd2, 0xb8, 0x02, 0x10, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, - 0x6e, 0x65, 0x77, 0x20, 0x4c, 0x32, 0x4d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x14, 0x2f, - 0x61, 0x70, 0x69, 0x2f, 0x76, 0x32, 0x2f, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, - 0x69, 0x63, 0x73, 0x3a, 0x03, 0x6c, 0x32, 0x6d, 0x12, 0xa0, 0x01, 0x0a, 0x07, 0x4c, 0x69, 0x73, - 0x74, 0x4c, 0x32, 0x4d, 0x12, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, - 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, - 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x32, 0x4d, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, - 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x69, 0x73, 0x74, - 0x4c, 0x32, 0x4d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2e, 0xd2, 0xb8, 0x02, - 0x0e, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74, 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x4c, 0x32, 0x4d, 0x82, - 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x12, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x32, 0x2f, 0x6c, - 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x9e, 0x01, 0x0a, 0x0a, - 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x4c, 0x32, 0x4d, 0x12, 0x34, 0x2e, 0x63, 0x6f, 0x6d, - 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, - 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x52, - 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x4c, 0x32, 0x4d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x1a, 0x26, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, - 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, - 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x32, 0x4d, 0x22, 0x32, 0xd2, 0xb8, 0x02, 0x0d, 0x0a, 0x0b, - 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x20, 0x4c, 0x32, 0x4d, 0x82, 0xd3, 0xe4, 0x93, 0x02, - 0x1b, 0x1a, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x32, 0x2f, 0x6c, 0x6f, 0x67, 0x73, 0x32, - 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x3a, 0x03, 0x6c, 0x32, 0x6d, 0x12, 0x92, 0x01, 0x0a, - 0x06, 0x47, 0x65, 0x74, 0x4c, 0x32, 0x4d, 0x12, 0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, - 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, - 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x47, 0x65, 0x74, 0x4c, - 0x32, 0x4d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, - 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x4c, 0x32, - 0x4d, 0x22, 0x2e, 0xd2, 0xb8, 0x02, 0x09, 0x0a, 0x07, 0x47, 0x65, 0x74, 0x20, 0x4c, 0x32, 0x4d, - 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x12, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x32, 0x2f, - 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2f, 0x7b, 0x69, 0x64, - 0x7d, 0x12, 0x8b, 0x01, 0x0a, 0x09, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4c, 0x32, 0x4d, 0x12, - 0x33, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, - 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4c, 0x32, 0x4d, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x31, 0xd2, 0xb8, - 0x02, 0x0c, 0x0a, 0x0a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x20, 0x4c, 0x32, 0x4d, 0x82, 0xd3, - 0xe4, 0x93, 0x02, 0x1b, 0x2a, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x32, 0x2f, 0x6c, 0x6f, - 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x12, - 0xe9, 0x01, 0x0a, 0x15, 0x41, 0x74, 0x6f, 0x6d, 0x69, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x45, - 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x4c, 0x32, 0x4d, 0x12, 0x3f, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, - 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, - 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x41, 0x74, - 0x6f, 0x6d, 0x69, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, - 0x4c, 0x32, 0x4d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x40, 0x2e, 0x63, 0x6f, 0x6d, - 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, - 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x41, - 0x74, 0x6f, 0x6d, 0x69, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, - 0x65, 0x4c, 0x32, 0x4d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x4d, 0xd2, 0xb8, - 0x02, 0x1a, 0x0a, 0x18, 0x41, 0x74, 0x6f, 0x6d, 0x69, 0x63, 0x20, 0x42, 0x61, 0x74, 0x63, 0x68, - 0x20, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x20, 0x4c, 0x32, 0x4d, 0x82, 0xd3, 0xe4, 0x93, - 0x02, 0x29, 0x22, 0x27, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x32, 0x2f, 0x6c, 0x6f, 0x67, 0x73, - 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x3a, 0x61, 0x74, 0x6f, 0x6d, 0x69, 0x63, 0x42, - 0x61, 0x74, 0x63, 0x68, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x42, 0x04, 0x5a, 0x02, 0x2e, - 0x2f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDescOnce sync.Once - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDescData = file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDesc -) - -func file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDescGZIP() []byte { - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDescData) - }) - return file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDescData -} - -var file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes = make([]protoimpl.MessageInfo, 10) -var file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_goTypes = []interface{}{ - (*CreateL2MRequest)(nil), // 0: com.coralogixapis.logs2metrics.v2.CreateL2MRequest - (*ListL2MRequest)(nil), // 1: com.coralogixapis.logs2metrics.v2.ListL2MRequest - (*ListL2MResponse)(nil), // 2: com.coralogixapis.logs2metrics.v2.ListL2MResponse - (*ReplaceL2MRequest)(nil), // 3: com.coralogixapis.logs2metrics.v2.ReplaceL2MRequest - (*GetL2MRequest)(nil), // 4: com.coralogixapis.logs2metrics.v2.GetL2MRequest - (*DeleteL2MRequest)(nil), // 5: com.coralogixapis.logs2metrics.v2.DeleteL2MRequest - (*L2MExecutionRequest)(nil), // 6: com.coralogixapis.logs2metrics.v2.L2MExecutionRequest - (*AtomicBatchExecuteL2MRequest)(nil), // 7: com.coralogixapis.logs2metrics.v2.AtomicBatchExecuteL2MRequest - (*L2MExecutionResponse)(nil), // 8: com.coralogixapis.logs2metrics.v2.L2MExecutionResponse - (*AtomicBatchExecuteL2MResponse)(nil), // 9: com.coralogixapis.logs2metrics.v2.AtomicBatchExecuteL2MResponse - (*L2M)(nil), // 10: com.coralogixapis.logs2metrics.v2.L2M - (*wrapperspb.StringValue)(nil), // 11: google.protobuf.StringValue - (*emptypb.Empty)(nil), // 12: google.protobuf.Empty -} -var file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_depIdxs = []int32{ - 10, // 0: com.coralogixapis.logs2metrics.v2.CreateL2MRequest.l2m:type_name -> com.coralogixapis.logs2metrics.v2.L2M - 10, // 1: com.coralogixapis.logs2metrics.v2.ListL2MResponse.l2m:type_name -> com.coralogixapis.logs2metrics.v2.L2M - 10, // 2: com.coralogixapis.logs2metrics.v2.ReplaceL2MRequest.l2m:type_name -> com.coralogixapis.logs2metrics.v2.L2M - 11, // 3: com.coralogixapis.logs2metrics.v2.GetL2MRequest.id:type_name -> google.protobuf.StringValue - 11, // 4: com.coralogixapis.logs2metrics.v2.DeleteL2MRequest.id:type_name -> google.protobuf.StringValue - 0, // 5: com.coralogixapis.logs2metrics.v2.L2MExecutionRequest.create:type_name -> com.coralogixapis.logs2metrics.v2.CreateL2MRequest - 3, // 6: com.coralogixapis.logs2metrics.v2.L2MExecutionRequest.replace:type_name -> com.coralogixapis.logs2metrics.v2.ReplaceL2MRequest - 5, // 7: com.coralogixapis.logs2metrics.v2.L2MExecutionRequest.delete:type_name -> com.coralogixapis.logs2metrics.v2.DeleteL2MRequest - 6, // 8: com.coralogixapis.logs2metrics.v2.AtomicBatchExecuteL2MRequest.requests:type_name -> com.coralogixapis.logs2metrics.v2.L2MExecutionRequest - 0, // 9: com.coralogixapis.logs2metrics.v2.L2MExecutionResponse.created:type_name -> com.coralogixapis.logs2metrics.v2.CreateL2MRequest - 3, // 10: com.coralogixapis.logs2metrics.v2.L2MExecutionResponse.replaced:type_name -> com.coralogixapis.logs2metrics.v2.ReplaceL2MRequest - 5, // 11: com.coralogixapis.logs2metrics.v2.L2MExecutionResponse.deleted:type_name -> com.coralogixapis.logs2metrics.v2.DeleteL2MRequest - 8, // 12: com.coralogixapis.logs2metrics.v2.AtomicBatchExecuteL2MResponse.matching_responses:type_name -> com.coralogixapis.logs2metrics.v2.L2MExecutionResponse - 0, // 13: com.coralogixapis.logs2metrics.v2.Logs2MetricService.CreateL2M:input_type -> com.coralogixapis.logs2metrics.v2.CreateL2MRequest - 1, // 14: com.coralogixapis.logs2metrics.v2.Logs2MetricService.ListL2M:input_type -> com.coralogixapis.logs2metrics.v2.ListL2MRequest - 3, // 15: com.coralogixapis.logs2metrics.v2.Logs2MetricService.ReplaceL2M:input_type -> com.coralogixapis.logs2metrics.v2.ReplaceL2MRequest - 4, // 16: com.coralogixapis.logs2metrics.v2.Logs2MetricService.GetL2M:input_type -> com.coralogixapis.logs2metrics.v2.GetL2MRequest - 5, // 17: com.coralogixapis.logs2metrics.v2.Logs2MetricService.DeleteL2M:input_type -> com.coralogixapis.logs2metrics.v2.DeleteL2MRequest - 7, // 18: com.coralogixapis.logs2metrics.v2.Logs2MetricService.AtomicBatchExecuteL2M:input_type -> com.coralogixapis.logs2metrics.v2.AtomicBatchExecuteL2MRequest - 10, // 19: com.coralogixapis.logs2metrics.v2.Logs2MetricService.CreateL2M:output_type -> com.coralogixapis.logs2metrics.v2.L2M - 2, // 20: com.coralogixapis.logs2metrics.v2.Logs2MetricService.ListL2M:output_type -> com.coralogixapis.logs2metrics.v2.ListL2MResponse - 10, // 21: com.coralogixapis.logs2metrics.v2.Logs2MetricService.ReplaceL2M:output_type -> com.coralogixapis.logs2metrics.v2.L2M - 10, // 22: com.coralogixapis.logs2metrics.v2.Logs2MetricService.GetL2M:output_type -> com.coralogixapis.logs2metrics.v2.L2M - 12, // 23: com.coralogixapis.logs2metrics.v2.Logs2MetricService.DeleteL2M:output_type -> google.protobuf.Empty - 9, // 24: com.coralogixapis.logs2metrics.v2.Logs2MetricService.AtomicBatchExecuteL2M:output_type -> com.coralogixapis.logs2metrics.v2.AtomicBatchExecuteL2MResponse - 19, // [19:25] is the sub-list for method output_type - 13, // [13:19] is the sub-list for method input_type - 13, // [13:13] is the sub-list for extension type_name - 13, // [13:13] is the sub-list for extension extendee - 0, // [0:13] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_init() } -func file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_init() { - if File_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto != nil { - return - } - //file_google_api_annotations_proto_init() - file_com_coralogixapis_logs2metrics_v2_audit_log_proto_init() - file_com_coralogixapis_logs2metrics_v2_logs_query_proto_init() - file_com_coralogixapis_logs2metrics_v2_logs2metrics_definition_proto_init() - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateL2MRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListL2MRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListL2MResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ReplaceL2MRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetL2MRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteL2MRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*L2MExecutionRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AtomicBatchExecuteL2MRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*L2MExecutionResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AtomicBatchExecuteL2MResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[6].OneofWrappers = []interface{}{ - (*L2MExecutionRequest_Create)(nil), - (*L2MExecutionRequest_Replace)(nil), - (*L2MExecutionRequest_Delete)(nil), - } - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes[8].OneofWrappers = []interface{}{ - (*L2MExecutionResponse_Created)(nil), - (*L2MExecutionResponse_Replaced)(nil), - (*L2MExecutionResponse_Deleted)(nil), - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDesc, - NumEnums: 0, - NumMessages: 10, - NumExtensions: 0, - NumServices: 1, - }, - GoTypes: file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_depIdxs, - MessageInfos: file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_msgTypes, - }.Build() - File_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto = out.File - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_rawDesc = nil - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_goTypes = nil - file_com_coralogixapis_logs2metrics_v2_logs2metrics_service_proto_depIdxs = nil -} diff --git a/controllers/clientset/grpc/logs2metrics/v2/logs2metrics_service_grpc.pb.go b/controllers/clientset/grpc/logs2metrics/v2/logs2metrics_service_grpc.pb.go deleted file mode 100644 index 023998c..0000000 --- a/controllers/clientset/grpc/logs2metrics/v2/logs2metrics_service_grpc.pb.go +++ /dev/null @@ -1,287 +0,0 @@ -// Code generated by protoc-gen-go-grpc. DO NOT EDIT. -// versions: -// - protoc-gen-go-grpc v1.2.0 -// - protoc v3.21.8 -// source: com/coralogixapis/logs2metrics/v2/logs2metrics_service.proto - -package __ - -import ( - context "context" - - grpc "google.golang.org/grpc" - codes "google.golang.org/grpc/codes" - status "google.golang.org/grpc/status" - emptypb "google.golang.org/protobuf/types/known/emptypb" -) - -// This is a compile-time assertion to ensure that this generated file -// is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.32.0 or later. -const _ = grpc.SupportPackageIsVersion7 - -// Logs2MetricServiceClient is the client API for Logs2MetricService service. -// -// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. -type Logs2MetricServiceClient interface { - CreateL2M(ctx context.Context, in *CreateL2MRequest, opts ...grpc.CallOption) (*L2M, error) - ListL2M(ctx context.Context, in *ListL2MRequest, opts ...grpc.CallOption) (*ListL2MResponse, error) - ReplaceL2M(ctx context.Context, in *ReplaceL2MRequest, opts ...grpc.CallOption) (*L2M, error) - GetL2M(ctx context.Context, in *GetL2MRequest, opts ...grpc.CallOption) (*L2M, error) - DeleteL2M(ctx context.Context, in *DeleteL2MRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) - AtomicBatchExecuteL2M(ctx context.Context, in *AtomicBatchExecuteL2MRequest, opts ...grpc.CallOption) (*AtomicBatchExecuteL2MResponse, error) -} - -type logs2MetricServiceClient struct { - cc grpc.ClientConnInterface -} - -func NewLogs2MetricServiceClient(cc grpc.ClientConnInterface) Logs2MetricServiceClient { - return &logs2MetricServiceClient{cc} -} - -func (c *logs2MetricServiceClient) CreateL2M(ctx context.Context, in *CreateL2MRequest, opts ...grpc.CallOption) (*L2M, error) { - out := new(L2M) - err := c.cc.Invoke(ctx, "/com.coralogixapis.logs2metrics.v2.Logs2MetricService/CreateL2M", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *logs2MetricServiceClient) ListL2M(ctx context.Context, in *ListL2MRequest, opts ...grpc.CallOption) (*ListL2MResponse, error) { - out := new(ListL2MResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.logs2metrics.v2.Logs2MetricService/ListL2M", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *logs2MetricServiceClient) ReplaceL2M(ctx context.Context, in *ReplaceL2MRequest, opts ...grpc.CallOption) (*L2M, error) { - out := new(L2M) - err := c.cc.Invoke(ctx, "/com.coralogixapis.logs2metrics.v2.Logs2MetricService/ReplaceL2M", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *logs2MetricServiceClient) GetL2M(ctx context.Context, in *GetL2MRequest, opts ...grpc.CallOption) (*L2M, error) { - out := new(L2M) - err := c.cc.Invoke(ctx, "/com.coralogixapis.logs2metrics.v2.Logs2MetricService/GetL2M", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *logs2MetricServiceClient) DeleteL2M(ctx context.Context, in *DeleteL2MRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) { - out := new(emptypb.Empty) - err := c.cc.Invoke(ctx, "/com.coralogixapis.logs2metrics.v2.Logs2MetricService/DeleteL2M", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *logs2MetricServiceClient) AtomicBatchExecuteL2M(ctx context.Context, in *AtomicBatchExecuteL2MRequest, opts ...grpc.CallOption) (*AtomicBatchExecuteL2MResponse, error) { - out := new(AtomicBatchExecuteL2MResponse) - err := c.cc.Invoke(ctx, "/com.coralogixapis.logs2metrics.v2.Logs2MetricService/AtomicBatchExecuteL2M", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -// Logs2MetricServiceServer is the server API for Logs2MetricService service. -// All implementations must embed UnimplementedLogs2MetricServiceServer -// for forward compatibility -type Logs2MetricServiceServer interface { - CreateL2M(context.Context, *CreateL2MRequest) (*L2M, error) - ListL2M(context.Context, *ListL2MRequest) (*ListL2MResponse, error) - ReplaceL2M(context.Context, *ReplaceL2MRequest) (*L2M, error) - GetL2M(context.Context, *GetL2MRequest) (*L2M, error) - DeleteL2M(context.Context, *DeleteL2MRequest) (*emptypb.Empty, error) - AtomicBatchExecuteL2M(context.Context, *AtomicBatchExecuteL2MRequest) (*AtomicBatchExecuteL2MResponse, error) - mustEmbedUnimplementedLogs2MetricServiceServer() -} - -// UnimplementedLogs2MetricServiceServer must be embedded to have forward compatible implementations. -type UnimplementedLogs2MetricServiceServer struct { -} - -func (UnimplementedLogs2MetricServiceServer) CreateL2M(context.Context, *CreateL2MRequest) (*L2M, error) { - return nil, status.Errorf(codes.Unimplemented, "method CreateL2M not implemented") -} -func (UnimplementedLogs2MetricServiceServer) ListL2M(context.Context, *ListL2MRequest) (*ListL2MResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method ListL2M not implemented") -} -func (UnimplementedLogs2MetricServiceServer) ReplaceL2M(context.Context, *ReplaceL2MRequest) (*L2M, error) { - return nil, status.Errorf(codes.Unimplemented, "method ReplaceL2M not implemented") -} -func (UnimplementedLogs2MetricServiceServer) GetL2M(context.Context, *GetL2MRequest) (*L2M, error) { - return nil, status.Errorf(codes.Unimplemented, "method GetL2M not implemented") -} -func (UnimplementedLogs2MetricServiceServer) DeleteL2M(context.Context, *DeleteL2MRequest) (*emptypb.Empty, error) { - return nil, status.Errorf(codes.Unimplemented, "method DeleteL2M not implemented") -} -func (UnimplementedLogs2MetricServiceServer) AtomicBatchExecuteL2M(context.Context, *AtomicBatchExecuteL2MRequest) (*AtomicBatchExecuteL2MResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method AtomicBatchExecuteL2M not implemented") -} -func (UnimplementedLogs2MetricServiceServer) mustEmbedUnimplementedLogs2MetricServiceServer() {} - -// UnsafeLogs2MetricServiceServer may be embedded to opt out of forward compatibility for this service. -// Use of this interface is not recommended, as added methods to Logs2MetricServiceServer will -// result in compilation errors. -type UnsafeLogs2MetricServiceServer interface { - mustEmbedUnimplementedLogs2MetricServiceServer() -} - -func RegisterLogs2MetricServiceServer(s grpc.ServiceRegistrar, srv Logs2MetricServiceServer) { - s.RegisterService(&Logs2MetricService_ServiceDesc, srv) -} - -func _Logs2MetricService_CreateL2M_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(CreateL2MRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(Logs2MetricServiceServer).CreateL2M(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.logs2metrics.v2.Logs2MetricService/CreateL2M", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(Logs2MetricServiceServer).CreateL2M(ctx, req.(*CreateL2MRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _Logs2MetricService_ListL2M_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(ListL2MRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(Logs2MetricServiceServer).ListL2M(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.logs2metrics.v2.Logs2MetricService/ListL2M", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(Logs2MetricServiceServer).ListL2M(ctx, req.(*ListL2MRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _Logs2MetricService_ReplaceL2M_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(ReplaceL2MRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(Logs2MetricServiceServer).ReplaceL2M(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.logs2metrics.v2.Logs2MetricService/ReplaceL2M", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(Logs2MetricServiceServer).ReplaceL2M(ctx, req.(*ReplaceL2MRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _Logs2MetricService_GetL2M_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(GetL2MRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(Logs2MetricServiceServer).GetL2M(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.logs2metrics.v2.Logs2MetricService/GetL2M", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(Logs2MetricServiceServer).GetL2M(ctx, req.(*GetL2MRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _Logs2MetricService_DeleteL2M_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(DeleteL2MRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(Logs2MetricServiceServer).DeleteL2M(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.logs2metrics.v2.Logs2MetricService/DeleteL2M", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(Logs2MetricServiceServer).DeleteL2M(ctx, req.(*DeleteL2MRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _Logs2MetricService_AtomicBatchExecuteL2M_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(AtomicBatchExecuteL2MRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(Logs2MetricServiceServer).AtomicBatchExecuteL2M(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/com.coralogixapis.logs2metrics.v2.Logs2MetricService/AtomicBatchExecuteL2M", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(Logs2MetricServiceServer).AtomicBatchExecuteL2M(ctx, req.(*AtomicBatchExecuteL2MRequest)) - } - return interceptor(ctx, in, info, handler) -} - -// Logs2MetricService_ServiceDesc is the grpc.ServiceDesc for Logs2MetricService service. -// It's only intended for direct use with grpc.RegisterService, -// and not to be introspected or modified (even as a copy) -var Logs2MetricService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "com.coralogixapis.logs2metrics.v2.Logs2MetricService", - HandlerType: (*Logs2MetricServiceServer)(nil), - Methods: []grpc.MethodDesc{ - { - MethodName: "CreateL2M", - Handler: _Logs2MetricService_CreateL2M_Handler, - }, - { - MethodName: "ListL2M", - Handler: _Logs2MetricService_ListL2M_Handler, - }, - { - MethodName: "ReplaceL2M", - Handler: _Logs2MetricService_ReplaceL2M_Handler, - }, - { - MethodName: "GetL2M", - Handler: _Logs2MetricService_GetL2M_Handler, - }, - { - MethodName: "DeleteL2M", - Handler: _Logs2MetricService_DeleteL2M_Handler, - }, - { - MethodName: "AtomicBatchExecuteL2M", - Handler: _Logs2MetricService_AtomicBatchExecuteL2M_Handler, - }, - }, - Streams: []grpc.StreamDesc{}, - Metadata: "com/coralogixapis/logs2metrics/v2/logs2metrics_service.proto", -} diff --git a/controllers/clientset/grpc/logs2metrics/v2/logs_query.pb.go b/controllers/clientset/grpc/logs2metrics/v2/logs_query.pb.go deleted file mode 100644 index 6d4e1d5..0000000 --- a/controllers/clientset/grpc/logs2metrics/v2/logs_query.pb.go +++ /dev/null @@ -1,279 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.21.8 -// source: com/coralogixapis/logs2metrics/v2/logs_query.proto - -package __ - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" -) - -const ( - // Verify that this generated code is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) - // Verify that runtime/protoimpl is sufficiently up-to-date. - _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) -) - -type Severity int32 - -const ( - Severity_Unspecified Severity = 0 - Severity_Debug Severity = 1 - Severity_Verbose Severity = 2 - Severity_Info Severity = 3 - Severity_Warning Severity = 4 - Severity_Error Severity = 5 - Severity_Critical Severity = 6 -) - -// Enum value maps for Severity. -var ( - Severity_name = map[int32]string{ - 0: "Unspecified", - 1: "Debug", - 2: "Verbose", - 3: "Info", - 4: "Warning", - 5: "Error", - 6: "Critical", - } - Severity_value = map[string]int32{ - "Unspecified": 0, - "Debug": 1, - "Verbose": 2, - "Info": 3, - "Warning": 4, - "Error": 5, - "Critical": 6, - } -) - -func (x Severity) Enum() *Severity { - p := new(Severity) - *p = x - return p -} - -func (x Severity) String() string { - return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) -} - -func (Severity) Descriptor() protoreflect.EnumDescriptor { - return file_com_coralogixapis_logs2metrics_v2_logs_query_proto_enumTypes[0].Descriptor() -} - -func (Severity) Type() protoreflect.EnumType { - return &file_com_coralogixapis_logs2metrics_v2_logs_query_proto_enumTypes[0] -} - -func (x Severity) Number() protoreflect.EnumNumber { - return protoreflect.EnumNumber(x) -} - -// Deprecated: Use Severity.Descriptor instead. -func (Severity) EnumDescriptor() ([]byte, []int) { - return file_com_coralogixapis_logs2metrics_v2_logs_query_proto_rawDescGZIP(), []int{0} -} - -type LogsQuery struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Lucene *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=lucene,proto3" json:"lucene,omitempty"` - Alias *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=alias,proto3" json:"alias,omitempty"` - ApplicationnameFilters []*wrapperspb.StringValue `protobuf:"bytes,3,rep,name=applicationname_filters,json=applicationnameFilters,proto3" json:"applicationname_filters,omitempty"` - SubsystemnameFilters []*wrapperspb.StringValue `protobuf:"bytes,4,rep,name=subsystemname_filters,json=subsystemnameFilters,proto3" json:"subsystemname_filters,omitempty"` - SeverityFilters []Severity `protobuf:"varint,5,rep,packed,name=severity_filters,json=severityFilters,proto3,enum=com.coralogixapis.logs2metrics.v2.Severity" json:"severity_filters,omitempty"` -} - -func (x *LogsQuery) Reset() { - *x = LogsQuery{} - if protoimpl.UnsafeEnabled { - mi := &file_com_coralogixapis_logs2metrics_v2_logs_query_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *LogsQuery) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*LogsQuery) ProtoMessage() {} - -func (x *LogsQuery) ProtoReflect() protoreflect.Message { - mi := &file_com_coralogixapis_logs2metrics_v2_logs_query_proto_msgTypes[0] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use LogsQuery.ProtoReflect.Descriptor instead. -func (*LogsQuery) Descriptor() ([]byte, []int) { - return file_com_coralogixapis_logs2metrics_v2_logs_query_proto_rawDescGZIP(), []int{0} -} - -func (x *LogsQuery) GetLucene() *wrapperspb.StringValue { - if x != nil { - return x.Lucene - } - return nil -} - -func (x *LogsQuery) GetAlias() *wrapperspb.StringValue { - if x != nil { - return x.Alias - } - return nil -} - -func (x *LogsQuery) GetApplicationnameFilters() []*wrapperspb.StringValue { - if x != nil { - return x.ApplicationnameFilters - } - return nil -} - -func (x *LogsQuery) GetSubsystemnameFilters() []*wrapperspb.StringValue { - if x != nil { - return x.SubsystemnameFilters - } - return nil -} - -func (x *LogsQuery) GetSeverityFilters() []Severity { - if x != nil { - return x.SeverityFilters - } - return nil -} - -var File_com_coralogixapis_logs2metrics_v2_logs_query_proto protoreflect.FileDescriptor - -var file_com_coralogixapis_logs2metrics_v2_logs_query_proto_rawDesc = []byte{ - 0x0a, 0x32, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, 0x67, 0x69, 0x78, 0x61, - 0x70, 0x69, 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, - 0x2f, 0x76, 0x32, 0x2f, 0x6c, 0x6f, 0x67, 0x73, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, - 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x72, - 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xf7, 0x02, 0x0a, 0x09, 0x4c, 0x6f, 0x67, 0x73, - 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x34, 0x0a, 0x06, 0x6c, 0x75, 0x63, 0x65, 0x6e, 0x65, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, - 0x6c, 0x75, 0x65, 0x52, 0x06, 0x6c, 0x75, 0x63, 0x65, 0x6e, 0x65, 0x12, 0x32, 0x0a, 0x05, 0x61, - 0x6c, 0x69, 0x61, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, - 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x12, - 0x55, 0x0a, 0x17, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, - 0x6d, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, - 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x16, - 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x6d, 0x65, 0x46, - 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x12, 0x51, 0x0a, 0x15, 0x73, 0x75, 0x62, 0x73, 0x79, 0x73, - 0x74, 0x65, 0x6d, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x18, - 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, - 0x6c, 0x75, 0x65, 0x52, 0x14, 0x73, 0x75, 0x62, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x6e, 0x61, - 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x12, 0x56, 0x0a, 0x10, 0x73, 0x65, 0x76, - 0x65, 0x72, 0x69, 0x74, 0x79, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x18, 0x05, 0x20, - 0x03, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x63, 0x6f, 0x72, 0x61, 0x6c, 0x6f, - 0x67, 0x69, 0x78, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x6c, 0x6f, 0x67, 0x73, 0x32, 0x6d, 0x65, 0x74, - 0x72, 0x69, 0x63, 0x73, 0x2e, 0x76, 0x32, 0x2e, 0x53, 0x65, 0x76, 0x65, 0x72, 0x69, 0x74, 0x79, - 0x52, 0x0f, 0x73, 0x65, 0x76, 0x65, 0x72, 0x69, 0x74, 0x79, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, - 0x73, 0x2a, 0x63, 0x0a, 0x08, 0x53, 0x65, 0x76, 0x65, 0x72, 0x69, 0x74, 0x79, 0x12, 0x0f, 0x0a, - 0x0b, 0x55, 0x6e, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x65, 0x64, 0x10, 0x00, 0x12, 0x09, - 0x0a, 0x05, 0x44, 0x65, 0x62, 0x75, 0x67, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x56, 0x65, 0x72, - 0x62, 0x6f, 0x73, 0x65, 0x10, 0x02, 0x12, 0x08, 0x0a, 0x04, 0x49, 0x6e, 0x66, 0x6f, 0x10, 0x03, - 0x12, 0x0b, 0x0a, 0x07, 0x57, 0x61, 0x72, 0x6e, 0x69, 0x6e, 0x67, 0x10, 0x04, 0x12, 0x09, 0x0a, - 0x05, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x05, 0x12, 0x0c, 0x0a, 0x08, 0x43, 0x72, 0x69, 0x74, - 0x69, 0x63, 0x61, 0x6c, 0x10, 0x06, 0x42, 0x04, 0x5a, 0x02, 0x2e, 0x2f, 0x62, 0x06, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_com_coralogixapis_logs2metrics_v2_logs_query_proto_rawDescOnce sync.Once - file_com_coralogixapis_logs2metrics_v2_logs_query_proto_rawDescData = file_com_coralogixapis_logs2metrics_v2_logs_query_proto_rawDesc -) - -func file_com_coralogixapis_logs2metrics_v2_logs_query_proto_rawDescGZIP() []byte { - file_com_coralogixapis_logs2metrics_v2_logs_query_proto_rawDescOnce.Do(func() { - file_com_coralogixapis_logs2metrics_v2_logs_query_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_coralogixapis_logs2metrics_v2_logs_query_proto_rawDescData) - }) - return file_com_coralogixapis_logs2metrics_v2_logs_query_proto_rawDescData -} - -var file_com_coralogixapis_logs2metrics_v2_logs_query_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_com_coralogixapis_logs2metrics_v2_logs_query_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_com_coralogixapis_logs2metrics_v2_logs_query_proto_goTypes = []interface{}{ - (Severity)(0), // 0: com.coralogixapis.logs2metrics.v2.Severity - (*LogsQuery)(nil), // 1: com.coralogixapis.logs2metrics.v2.LogsQuery - (*wrapperspb.StringValue)(nil), // 2: google.protobuf.StringValue -} -var file_com_coralogixapis_logs2metrics_v2_logs_query_proto_depIdxs = []int32{ - 2, // 0: com.coralogixapis.logs2metrics.v2.LogsQuery.lucene:type_name -> google.protobuf.StringValue - 2, // 1: com.coralogixapis.logs2metrics.v2.LogsQuery.alias:type_name -> google.protobuf.StringValue - 2, // 2: com.coralogixapis.logs2metrics.v2.LogsQuery.applicationname_filters:type_name -> google.protobuf.StringValue - 2, // 3: com.coralogixapis.logs2metrics.v2.LogsQuery.subsystemname_filters:type_name -> google.protobuf.StringValue - 0, // 4: com.coralogixapis.logs2metrics.v2.LogsQuery.severity_filters:type_name -> com.coralogixapis.logs2metrics.v2.Severity - 5, // [5:5] is the sub-list for method output_type - 5, // [5:5] is the sub-list for method input_type - 5, // [5:5] is the sub-list for extension type_name - 5, // [5:5] is the sub-list for extension extendee - 0, // [0:5] is the sub-list for field type_name -} - -func init() { file_com_coralogixapis_logs2metrics_v2_logs_query_proto_init() } -func file_com_coralogixapis_logs2metrics_v2_logs_query_proto_init() { - if File_com_coralogixapis_logs2metrics_v2_logs_query_proto != nil { - return - } - if !protoimpl.UnsafeEnabled { - file_com_coralogixapis_logs2metrics_v2_logs_query_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*LogsQuery); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - } - type x struct{} - out := protoimpl.TypeBuilder{ - File: protoimpl.DescBuilder{ - GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: file_com_coralogixapis_logs2metrics_v2_logs_query_proto_rawDesc, - NumEnums: 1, - NumMessages: 1, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_com_coralogixapis_logs2metrics_v2_logs_query_proto_goTypes, - DependencyIndexes: file_com_coralogixapis_logs2metrics_v2_logs_query_proto_depIdxs, - EnumInfos: file_com_coralogixapis_logs2metrics_v2_logs_query_proto_enumTypes, - MessageInfos: file_com_coralogixapis_logs2metrics_v2_logs_query_proto_msgTypes, - }.Build() - File_com_coralogixapis_logs2metrics_v2_logs_query_proto = out.File - file_com_coralogixapis_logs2metrics_v2_logs_query_proto_rawDesc = nil - file_com_coralogixapis_logs2metrics_v2_logs_query_proto_goTypes = nil - file_com_coralogixapis_logs2metrics_v2_logs_query_proto_depIdxs = nil -} diff --git a/controllers/clientset/logs2metrics-client.go b/controllers/clientset/logs2metrics-client.go deleted file mode 100644 index ad0ab68..0000000 --- a/controllers/clientset/logs2metrics-client.go +++ /dev/null @@ -1,71 +0,0 @@ -package clientset - -import ( - "context" - - logs2metrics "github.com/coralogix/coralogix-operator/controllers/clientset/grpc/logs2metrics/v2" - - "google.golang.org/protobuf/types/known/emptypb" -) - -type Logs2MetricsClient struct { - callPropertiesCreator *CallPropertiesCreator -} - -func (l Logs2MetricsClient) CreateLogs2Metric(ctx context.Context, req *logs2metrics.CreateL2MRequest) (*logs2metrics.L2M, error) { - callProperties, err := l.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - client := logs2metrics.NewLogs2MetricServiceClient(conn) - - return client.CreateL2M(callProperties.Ctx, req, callProperties.CallOptions...) -} - -func (l Logs2MetricsClient) GetLogs2Metric(ctx context.Context, req *logs2metrics.GetL2MRequest) (*logs2metrics.L2M, error) { - callProperties, err := l.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - client := logs2metrics.NewLogs2MetricServiceClient(conn) - - return client.GetL2M(callProperties.Ctx, req, callProperties.CallOptions...) -} - -func (l Logs2MetricsClient) UpdateLogs2Metric(ctx context.Context, req *logs2metrics.ReplaceL2MRequest) (*logs2metrics.L2M, error) { - callProperties, err := l.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - - client := logs2metrics.NewLogs2MetricServiceClient(conn) - - return client.ReplaceL2M(callProperties.Ctx, req, callProperties.CallOptions...) -} - -func (l Logs2MetricsClient) DeleteLogs2Metric(ctx context.Context, req *logs2metrics.DeleteL2MRequest) (*emptypb.Empty, error) { - callProperties, err := l.callPropertiesCreator.GetCallProperties(ctx) - if err != nil { - return nil, err - } - - conn := callProperties.Connection - defer conn.Close() - - client := logs2metrics.NewLogs2MetricServiceClient(conn) - - return client.DeleteL2M(callProperties.Ctx, req, callProperties.CallOptions...) -} - -func NewLogs2MetricsClient(c *CallPropertiesCreator) *Logs2MetricsClient { - return &Logs2MetricsClient{callPropertiesCreator: c} -} diff --git a/controllers/clientset/outbound-webhooks-client.go b/controllers/clientset/outbound-webhooks-client.go index 6008ba5..1fc594d 100644 --- a/controllers/clientset/outbound-webhooks-client.go +++ b/controllers/clientset/outbound-webhooks-client.go @@ -12,6 +12,7 @@ type OutboundWebhooksClientInterface interface { GetOutboundWebhook(ctx context.Context, req *outboundwebhooks.GetOutgoingWebhookRequest) (*outboundwebhooks.GetOutgoingWebhookResponse, error) UpdateOutboundWebhook(ctx context.Context, req *outboundwebhooks.UpdateOutgoingWebhookRequest) (*outboundwebhooks.UpdateOutgoingWebhookResponse, error) DeleteOutboundWebhook(ctx context.Context, req *outboundwebhooks.DeleteOutgoingWebhookRequest) (*outboundwebhooks.DeleteOutgoingWebhookResponse, error) + ListAllOutgoingWebhooks(ctx context.Context, req *outboundwebhooks.ListAllOutgoingWebhooksRequest) (*outboundwebhooks.ListAllOutgoingWebhooksResponse, error) } type OutboundWebhooksClient struct { @@ -70,6 +71,19 @@ func (c OutboundWebhooksClient) DeleteOutboundWebhook(ctx context.Context, req * return client.DeleteOutgoingWebhook(callProperties.Ctx, req, callProperties.CallOptions...) } +func (c OutboundWebhooksClient) ListAllOutgoingWebhooks(ctx context.Context, req *outboundwebhooks.ListAllOutgoingWebhooksRequest) (*outboundwebhooks.ListAllOutgoingWebhooksResponse, error) { + callProperties, err := c.callPropertiesCreator.GetCallProperties(ctx) + if err != nil { + return nil, err + } + + conn := callProperties.Connection + defer conn.Close() + client := outboundwebhooks.NewOutgoingWebhooksServiceClient(conn) + + return client.ListAllOutgoingWebhooks(callProperties.Ctx, req, callProperties.CallOptions...) +} + func NewOutboundWebhooksClient(c *CallPropertiesCreator) *OutboundWebhooksClient { return &OutboundWebhooksClient{callPropertiesCreator: c} } diff --git a/controllers/clientset/rest/client.go b/controllers/clientset/rest/client.go deleted file mode 100644 index 2d00ca1..0000000 --- a/controllers/clientset/rest/client.go +++ /dev/null @@ -1,86 +0,0 @@ -package rest - -import ( - "bytes" - "context" - "fmt" - "io" - "net/http" - "net/http/httputil" -) - -// Client for Coralogix API -type Client struct { - url string - apiKey string - client *http.Client -} - -func NewRestClient(url string, apiKey string) *Client { - return &Client{url, apiKey, &http.Client{}} -} - -// Request executes request to Coralogix API -func (c *Client) Request(ctx context.Context, method, path, contentType string, body interface{}) (string, error) { - var request *http.Request - if body != nil { - bodyReader := bytes.NewBuffer([]byte(body.(string))) - var err error - request, err = http.NewRequest(method, c.url+path, bodyReader) - if err != nil { - return "", err - } - - request, _ = http.NewRequest(method, c.url+path, bodyReader) - request.Header.Set("Content-Type", contentType) - } else { - request, _ = http.NewRequest(method, c.url+path, nil) - } - - request = request.WithContext(ctx) - request.Header.Set("Cache-Control", "no-cache") - request.Header.Set("Authorization", "Bearer "+c.apiKey) - - response, err := c.client.Do(request) - if err != nil { - return "", err - } - - if response.StatusCode == 200 || response.StatusCode == 201 { - defer response.Body.Close() - - bodyResp, err := io.ReadAll(response.Body) - if err != nil { - return "", err - } - - return string(bodyResp), nil - } - - responseBody, err := httputil.DumpResponse(response, true) - if err != nil { - return "", err - } - - return "", fmt.Errorf("API Error: %s. Status code: %s", string(responseBody), response.Status) -} - -// Get executes GET request to Coralogix API -func (c *Client) Get(ctx context.Context, path string) (string, error) { - return c.Request(ctx, "GET", path, "", nil) -} - -// Post executes POST request to Coralogix API -func (c *Client) Post(ctx context.Context, path, contentType, body string) (string, error) { - return c.Request(ctx, "POST", path, contentType, body) -} - -// Put executes PUT request to Coralogix API -func (c *Client) Put(ctx context.Context, path, contentType, body string) (string, error) { - return c.Request(ctx, "PUT", path, contentType, body) -} - -// Delete executes DELETE request to Coralogix API -func (c *Client) Delete(ctx context.Context, path string) (string, error) { - return c.Request(ctx, "DELETE", path, "", nil) -} diff --git a/controllers/clientset/tco-policies-client.go b/controllers/clientset/tco-policies-client.go deleted file mode 100644 index c039d86..0000000 --- a/controllers/clientset/tco-policies-client.go +++ /dev/null @@ -1,36 +0,0 @@ -package clientset - -import ( - "context" - "fmt" - "strings" - - "github.com/coralogix/coralogix-operator/controllers/clientset/rest" -) - -type TCOPolicies struct { - client *rest.Client -} - -func (t TCOPolicies) CreateTCOPolicy(ctx context.Context, jsonContent string) (string, error) { - return t.client.Post(ctx, "/policies", "application/json", jsonContent) -} - -func (t TCOPolicies) GetTCOPolicy(ctx context.Context, id string) (string, error) { - return t.client.Get(ctx, fmt.Sprintf("/policies/%s", id)) -} - -func (t TCOPolicies) UpdateTCOPolicy(ctx context.Context, id string, jsonContent string) (string, error) { - return t.client.Put(ctx, fmt.Sprintf("/policies/%s", id), "application/json", jsonContent) -} - -func (t TCOPolicies) DeleteTCOPolicy(ctx context.Context, id string) error { - _, err := t.client.Delete(ctx, fmt.Sprintf("/policies/%s", id)) - return err -} - -func NewTCOPoliciesClient(c *CallPropertiesCreator) *TCOPolicies { - targetUrl := "https://" + strings.Replace(c.targetUrl, "ng-api-grpc", "api", 1) + "/api/v1/external/tco" - client := rest.NewRestClient(targetUrl, c.apiKey) - return &TCOPolicies{client: client} -} diff --git a/controllers/clientset/webhooks-client.go b/controllers/clientset/webhooks-client.go deleted file mode 100644 index 555f51b..0000000 --- a/controllers/clientset/webhooks-client.go +++ /dev/null @@ -1,48 +0,0 @@ -package clientset - -import ( - "context" - "fmt" - "strings" - - "github.com/coralogix/coralogix-operator/controllers/clientset/rest" -) - -//go:generate mockgen -destination=../mock_clientset/mock_webhooks-client.go -package=mock_clientset github.com/coralogix/coralogix-operator/controllers/clientset WebhooksClientInterface -type WebhooksClientInterface interface { - CreateWebhook(ctx context.Context, body string) (string, error) - GetWebhook(ctx context.Context, webhookId string) (string, error) - GetWebhooks(ctx context.Context) (string, error) - UpdateWebhook(ctx context.Context, body string) (string, error) - DeleteWebhook(ctx context.Context, webhookId string) (string, error) -} - -type WebhooksClient struct { - client *rest.Client -} - -func (w WebhooksClient) CreateWebhook(ctx context.Context, body string) (string, error) { - return w.client.Post(ctx, "/api/v1/external/integrations", "application/json", body) -} - -func (w WebhooksClient) GetWebhook(ctx context.Context, webhookId string) (string, error) { - return w.client.Get(ctx, fmt.Sprintf("/api/v1/external/integrations/%s", webhookId)) -} - -func (w WebhooksClient) GetWebhooks(ctx context.Context) (string, error) { - return w.client.Get(ctx, "/api/v1/external/integrations/") -} - -func (w WebhooksClient) UpdateWebhook(ctx context.Context, body string) (string, error) { - return w.client.Post(ctx, "/api/v1/external/integrations", "application/json", body) -} - -func (w WebhooksClient) DeleteWebhook(ctx context.Context, webhookId string) (string, error) { - return w.client.Delete(ctx, fmt.Sprintf("/api/v1/external/integrations/%s", webhookId)) -} - -func NewWebhooksClient(c *CallPropertiesCreator) *WebhooksClient { - targetUrl := "https://" + strings.Replace(c.targetUrl, "grpc", "http", 1) - client := rest.NewRestClient(targetUrl, c.apiKey) - return &WebhooksClient{client: client} -} diff --git a/controllers/mock_clientset/mock_clientset.go b/controllers/mock_clientset/mock_clientset.go index cd5af5c..87b39b0 100644 --- a/controllers/mock_clientset/mock_clientset.go +++ b/controllers/mock_clientset/mock_clientset.go @@ -93,17 +93,3 @@ func (mr *MockClientSetInterfaceMockRecorder) RuleGroups() *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RuleGroups", reflect.TypeOf((*MockClientSetInterface)(nil).RuleGroups)) } - -// Webhooks mocks base method. -func (m *MockClientSetInterface) Webhooks() clientset.WebhooksClientInterface { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "Webhooks") - ret0, _ := ret[0].(clientset.WebhooksClientInterface) - return ret0 -} - -// Webhooks indicates an expected call of Webhooks. -func (mr *MockClientSetInterfaceMockRecorder) Webhooks() *gomock.Call { - mr.mock.ctrl.T.Helper() - return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Webhooks", reflect.TypeOf((*MockClientSetInterface)(nil).Webhooks)) -} diff --git a/controllers/mock_clientset/mock_outboundwebhooks-client.go b/controllers/mock_clientset/mock_outboundwebhooks-client.go index 62bd45c..f39bf89 100644 --- a/controllers/mock_clientset/mock_outboundwebhooks-client.go +++ b/controllers/mock_clientset/mock_outboundwebhooks-client.go @@ -84,6 +84,21 @@ func (mr *MockOutboundWebhooksClientInterfaceMockRecorder) GetOutboundWebhook(ar return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetOutboundWebhook", reflect.TypeOf((*MockOutboundWebhooksClientInterface)(nil).GetOutboundWebhook), arg0, arg1) } +// ListAllOutgoingWebhooks mocks base method. +func (m *MockOutboundWebhooksClientInterface) ListAllOutgoingWebhooks(arg0 context.Context, arg1 *__.ListAllOutgoingWebhooksRequest) (*__.ListAllOutgoingWebhooksResponse, error) { + m.ctrl.T.Helper() + ret := m.ctrl.Call(m, "ListAllOutgoingWebhooks", arg0, arg1) + ret0, _ := ret[0].(*__.ListAllOutgoingWebhooksResponse) + ret1, _ := ret[1].(error) + return ret0, ret1 +} + +// ListAllOutgoingWebhooks indicates an expected call of ListAllOutgoingWebhooks. +func (mr *MockOutboundWebhooksClientInterfaceMockRecorder) ListAllOutgoingWebhooks(arg0, arg1 any) *gomock.Call { + mr.mock.ctrl.T.Helper() + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListAllOutgoingWebhooks", reflect.TypeOf((*MockOutboundWebhooksClientInterface)(nil).ListAllOutgoingWebhooks), arg0, arg1) +} + // UpdateOutboundWebhook mocks base method. func (m *MockOutboundWebhooksClientInterface) UpdateOutboundWebhook(arg0 context.Context, arg1 *__.UpdateOutgoingWebhookRequest) (*__.UpdateOutgoingWebhookResponse, error) { m.ctrl.T.Helper() diff --git a/controllers/mock_clientset/mock_webhooks-client.go b/controllers/mock_clientset/mock_webhooks-client.go deleted file mode 100644 index 57e8163..0000000 --- a/controllers/mock_clientset/mock_webhooks-client.go +++ /dev/null @@ -1,114 +0,0 @@ -// Code generated by MockGen. DO NOT EDIT. -// Source: github.com/coralogix/coralogix-operator/controllers/clientset (interfaces: WebhooksClientInterface) -// -// Generated by this command: -// -// mockgen -destination=../mock_clientset/mock_webhooks-client.go -package=mock_clientset github.com/coralogix/coralogix-operator/controllers/clientset WebhooksClientInterface -// -// Package mock_clientset is a generated GoMock package. -package mock_clientset - -import ( - context "context" - reflect "reflect" - - gomock "go.uber.org/mock/gomock" -) - -// MockWebhooksClientInterface is a mock of WebhooksClientInterface interface. -type MockWebhooksClientInterface struct { - ctrl *gomock.Controller - recorder *MockWebhooksClientInterfaceMockRecorder -} - -// MockWebhooksClientInterfaceMockRecorder is the mock recorder for MockWebhooksClientInterface. -type MockWebhooksClientInterfaceMockRecorder struct { - mock *MockWebhooksClientInterface -} - -// NewMockWebhooksClientInterface creates a new mock instance. -func NewMockWebhooksClientInterface(ctrl *gomock.Controller) *MockWebhooksClientInterface { - mock := &MockWebhooksClientInterface{ctrl: ctrl} - mock.recorder = &MockWebhooksClientInterfaceMockRecorder{mock} - return mock -} - -// EXPECT returns an object that allows the caller to indicate expected use. -func (m *MockWebhooksClientInterface) EXPECT() *MockWebhooksClientInterfaceMockRecorder { - return m.recorder -} - -// CreateWebhook mocks base method. -func (m *MockWebhooksClientInterface) CreateWebhook(arg0 context.Context, arg1 string) (string, error) { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "CreateWebhook", arg0, arg1) - ret0, _ := ret[0].(string) - ret1, _ := ret[1].(error) - return ret0, ret1 -} - -// CreateWebhook indicates an expected call of CreateWebhook. -func (mr *MockWebhooksClientInterfaceMockRecorder) CreateWebhook(arg0, arg1 any) *gomock.Call { - mr.mock.ctrl.T.Helper() - return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateWebhook", reflect.TypeOf((*MockWebhooksClientInterface)(nil).CreateWebhook), arg0, arg1) -} - -// DeleteWebhook mocks base method. -func (m *MockWebhooksClientInterface) DeleteWebhook(arg0 context.Context, arg1 string) (string, error) { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "DeleteWebhook", arg0, arg1) - ret0, _ := ret[0].(string) - ret1, _ := ret[1].(error) - return ret0, ret1 -} - -// DeleteWebhook indicates an expected call of DeleteWebhook. -func (mr *MockWebhooksClientInterfaceMockRecorder) DeleteWebhook(arg0, arg1 any) *gomock.Call { - mr.mock.ctrl.T.Helper() - return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteWebhook", reflect.TypeOf((*MockWebhooksClientInterface)(nil).DeleteWebhook), arg0, arg1) -} - -// GetWebhook mocks base method. -func (m *MockWebhooksClientInterface) GetWebhook(arg0 context.Context, arg1 string) (string, error) { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "GetWebhook", arg0, arg1) - ret0, _ := ret[0].(string) - ret1, _ := ret[1].(error) - return ret0, ret1 -} - -// GetWebhook indicates an expected call of GetWebhook. -func (mr *MockWebhooksClientInterfaceMockRecorder) GetWebhook(arg0, arg1 any) *gomock.Call { - mr.mock.ctrl.T.Helper() - return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetWebhook", reflect.TypeOf((*MockWebhooksClientInterface)(nil).GetWebhook), arg0, arg1) -} - -// GetWebhooks mocks base method. -func (m *MockWebhooksClientInterface) GetWebhooks(arg0 context.Context) (string, error) { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "GetWebhooks", arg0) - ret0, _ := ret[0].(string) - ret1, _ := ret[1].(error) - return ret0, ret1 -} - -// GetWebhooks indicates an expected call of GetWebhooks. -func (mr *MockWebhooksClientInterfaceMockRecorder) GetWebhooks(arg0 any) *gomock.Call { - mr.mock.ctrl.T.Helper() - return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetWebhooks", reflect.TypeOf((*MockWebhooksClientInterface)(nil).GetWebhooks), arg0) -} - -// UpdateWebhook mocks base method. -func (m *MockWebhooksClientInterface) UpdateWebhook(arg0 context.Context, arg1 string) (string, error) { - m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "UpdateWebhook", arg0, arg1) - ret0, _ := ret[0].(string) - ret1, _ := ret[1].(error) - return ret0, ret1 -} - -// UpdateWebhook indicates an expected call of UpdateWebhook. -func (mr *MockWebhooksClientInterfaceMockRecorder) UpdateWebhook(arg0, arg1 any) *gomock.Call { - mr.mock.ctrl.T.Helper() - return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateWebhook", reflect.TypeOf((*MockWebhooksClientInterface)(nil).UpdateWebhook), arg0, arg1) -} diff --git a/kuttl-test.yaml b/kuttl-test.yaml index 9fba995..974fe93 100644 --- a/kuttl-test.yaml +++ b/kuttl-test.yaml @@ -1,7 +1,7 @@ apiVersion: kuttl.dev/v1beta1 kind: TestSuite testDirs: - #- tests/e2e/alerts + - tests/e2e/alerts - tests/e2e/rulegroups - tests/e2e/recordingrulegroupsets - tests/e2e/promatheusrules diff --git a/tests/e2e/alerts/standard/00-assert.yaml b/tests/e2e/alerts/standard/00-assert.yaml index 914828f..f1ae692 100644 --- a/tests/e2e/alerts/standard/00-assert.yaml +++ b/tests/e2e/alerts/standard/00-assert.yaml @@ -57,4 +57,4 @@ status: endTime: "20:00" startTime: "08:00" timeZone: UTC+02 - severity: Info + severity: Error diff --git a/tests/e2e/alerts/standard/00-standard-install.yaml b/tests/e2e/alerts/standard/00-standard-install.yaml index 58dfcf4..e7d81c4 100644 --- a/tests/e2e/alerts/standard/00-standard-install.yaml +++ b/tests/e2e/alerts/standard/00-standard-install.yaml @@ -11,7 +11,7 @@ metadata: spec: name: standard alert example description: alert from k8s operator - severity: Info + severity: Error labels: alert_type: security security_severity: high diff --git a/tests/e2e/alerts/standard/01-assert.yaml b/tests/e2e/alerts/standard/01-assert.yaml index 26835ee..b0f47b2 100644 --- a/tests/e2e/alerts/standard/01-assert.yaml +++ b/tests/e2e/alerts/standard/01-assert.yaml @@ -57,4 +57,4 @@ status: endTime: "20:00" startTime: "08:00" timeZone: UTC+02 - severity: Info + severity: Error diff --git a/tests/e2e/alerts/standard/01-standard-install.yaml b/tests/e2e/alerts/standard/01-standard-install.yaml index 8d51ff8..30fbbd4 100644 --- a/tests/e2e/alerts/standard/01-standard-install.yaml +++ b/tests/e2e/alerts/standard/01-standard-install.yaml @@ -11,7 +11,7 @@ metadata: spec: name: standard alert example description: alert from k8s operator - severity: Info + severity: Error labels: alert_type: security security_severity: high diff --git a/tests/e2e/alerts/standard/02-assert.yaml b/tests/e2e/alerts/standard/02-assert.yaml index 7c75288..d51d84b 100644 --- a/tests/e2e/alerts/standard/02-assert.yaml +++ b/tests/e2e/alerts/standard/02-assert.yaml @@ -56,4 +56,4 @@ status: endTime: "20:00" startTime: "08:00" timeZone: UTC+02 - severity: Info + severity: Error diff --git a/tests/e2e/alerts/standard/02-standard-install.yaml b/tests/e2e/alerts/standard/02-standard-install.yaml index bbf80c9..38bd600 100644 --- a/tests/e2e/alerts/standard/02-standard-install.yaml +++ b/tests/e2e/alerts/standard/02-standard-install.yaml @@ -11,7 +11,7 @@ metadata: spec: name: standard alert example description: alert from k8s operator - severity: Info + severity: Error labels: alert_type: security security_severity: high diff --git a/tests/e2e/alerts/standard/03-assert.yaml b/tests/e2e/alerts/standard/03-assert.yaml index e541ed9..8b7846e 100644 --- a/tests/e2e/alerts/standard/03-assert.yaml +++ b/tests/e2e/alerts/standard/03-assert.yaml @@ -42,4 +42,4 @@ status: endTime: "20:00" startTime: "08:00" timeZone: UTC+02 - severity: Info + severity: Error diff --git a/tests/e2e/alerts/standard/03-standard-install.yaml b/tests/e2e/alerts/standard/03-standard-install.yaml index 6c6942b..57070d6 100644 --- a/tests/e2e/alerts/standard/03-standard-install.yaml +++ b/tests/e2e/alerts/standard/03-standard-install.yaml @@ -11,7 +11,7 @@ metadata: spec: name: standard alert example description: alert from k8s operator - severity: Info + severity: Error labels: alert_type: security security_severity: high diff --git a/tests/e2e/alerts/time-relative/00-assert.yaml b/tests/e2e/alerts/time-relative/00-assert.yaml index 9a39556..5d6839f 100644 --- a/tests/e2e/alerts/time-relative/00-assert.yaml +++ b/tests/e2e/alerts/time-relative/00-assert.yaml @@ -56,4 +56,4 @@ status: endTime: "20:00" startTime: "08:00" timeZone: UTC+02 - severity: Info + severity: Error diff --git a/tests/e2e/alerts/time-relative/00-time-relative-install.yaml b/tests/e2e/alerts/time-relative/00-time-relative-install.yaml index f36199d..8c1f91b 100644 --- a/tests/e2e/alerts/time-relative/00-time-relative-install.yaml +++ b/tests/e2e/alerts/time-relative/00-time-relative-install.yaml @@ -11,7 +11,7 @@ metadata: spec: name: time-relative alert example description: alert from k8s operator - severity: Info + severity: Error labels: alert_type: security security_severity: high