Skip to content

Commit

Permalink
fix: proto
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahanmmi committed Apr 15, 2024
1 parent 044240b commit 712733f
Show file tree
Hide file tree
Showing 2 changed files with 440 additions and 45 deletions.
29 changes: 29 additions & 0 deletions proto/entity.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,35 @@ package kaytu.entity.v1;

option go_package="github.com/kaytu-io/kaytu-util/proto/src/golang";

message AWSResource {
string arn = 1;
string id = 2;
string name = 3;
string account = 4;
string region = 5;
string partition = 6;
string type = 7;
string description_json = 8;
kaytu.entity.v1.DescribeJob job = 9;
string unique_id = 10;
map<string,string> metadata = 11;
map<string,string> tags = 12;
}

message AzureResource {
string id = 1;
string name = 2;
string type = 3;
string resource_group = 4;
string location = 5;
string subscription_id = 6;
string description_json = 7;
kaytu.entity.v1.DescribeJob job = 8;
string unique_id = 9;
map<string,string> metadata = 10;
map<string,string> tags = 11;
}

message DescribeJob {
uint32 job_id = 1;
uint32 schedule_job_id = 2;
Expand Down
Loading

0 comments on commit 712733f

Please sign in to comment.