From 11dacd26111cc5cba4853da8ac9b4d25f11014e8 Mon Sep 17 00:00:00 2001 From: Anil Chandra <120965339+acx1729@users.noreply.github.com> Date: Sun, 27 Oct 2024 14:10:32 -0400 Subject: [PATCH] fixing plugin prefix names --- proto/describe.proto | 6 +++--- proto/entity.proto | 6 +++--- proto/es-sink.proto | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/proto/describe.proto b/proto/describe.proto index b8dc8c1..f6e1567 100644 --- a/proto/describe.proto +++ b/proto/describe.proto @@ -11,7 +11,7 @@ message DeliverResultRequest { uint32 parent_job_id = 2; string status = 3; string error = 4; - kaytu.entity.v1.DescribeJob describe_job = 5; + opengovernance.entity.v1.DescribeJob describe_job = 5; repeated string described_resource_ids = 6; string errorCode = 7; } @@ -21,6 +21,6 @@ message SetInProgressRequest { } service DescribeService { - rpc DeliverResult(DeliverResultRequest) returns (kaytu.entity.v1.ResponseOK) {} - rpc SetInProgress(SetInProgressRequest) returns (kaytu.entity.v1.ResponseOK) {} + rpc DeliverResult(DeliverResultRequest) returns (opengovernance.entity.v1.ResponseOK) {} + rpc SetInProgress(SetInProgressRequest) returns (opengovernance.entity.v1.ResponseOK) {} } \ No newline at end of file diff --git a/proto/entity.proto b/proto/entity.proto index 966876f..0c5c4bb 100644 --- a/proto/entity.proto +++ b/proto/entity.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kaytu.entity.v1; +package opengovernance.entity.v1; option go_package="github.com/opengovern/og-util/proto/src/golang"; @@ -13,7 +13,7 @@ message AWSResource { string partition = 6; string type = 7; string description_json = 8; - kaytu.entity.v1.DescribeJob job = 9; + opengovernance.entity.v1.DescribeJob job = 9; string unique_id = 10; map metadata = 11; map tags = 12; @@ -27,7 +27,7 @@ message AzureResource { string location = 5; string subscription_id = 6; string description_json = 7; - kaytu.entity.v1.DescribeJob job = 8; + opengovernance.entity.v1.DescribeJob job = 8; string unique_id = 9; map metadata = 10; map tags = 11; diff --git a/proto/es-sink.proto b/proto/es-sink.proto index 5940447..37382e2 100644 --- a/proto/es-sink.proto +++ b/proto/es-sink.proto @@ -12,5 +12,5 @@ message IngestRequest { } service EsSinkService { - rpc Ingest(IngestRequest) returns (kaytu.entity.v1.ResponseOK) {} + rpc Ingest(IngestRequest) returns (opengovernance.entity.v1.ResponseOK) {} } \ No newline at end of file