Skip to content

Commit

Permalink
Merge pull request #133 from opengovern/feat-cleanup-plugin
Browse files Browse the repository at this point in the history
fixing plugin prefix names
  • Loading branch information
acx1729 authored Oct 27, 2024
2 parents 08e08ae + 11dacd2 commit bb2ed7e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions proto/describe.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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) {}
}
6 changes: 3 additions & 3 deletions proto/entity.proto
Original file line number Diff line number Diff line change
@@ -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";

Expand All @@ -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<string,string> metadata = 11;
map<string,string> tags = 12;
Expand All @@ -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<string,string> metadata = 10;
map<string,string> tags = 11;
Expand Down
2 changes: 1 addition & 1 deletion proto/es-sink.proto
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ message IngestRequest {
}

service EsSinkService {
rpc Ingest(IngestRequest) returns (kaytu.entity.v1.ResponseOK) {}
rpc Ingest(IngestRequest) returns (opengovernance.entity.v1.ResponseOK) {}
}

0 comments on commit bb2ed7e

Please sign in to comment.