Skip to content

Commit c3fefae

Browse files
committed
fix(entropy): rename kind to value
1 parent 4bbb111 commit c3fefae

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

odpf/entropy/v1beta1/service.proto

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,19 @@ service ResourceService {
6060
}
6161

6262
message ResourceDependency {
63+
// Key should be as defined by the module being used for
64+
// the resource.
6365
string key = 1;
64-
string kind = 2;
66+
67+
// Value should refer to an existing resource via URN.
68+
string value = 2;
6569
}
6670

6771
message ResourceSpec {
6872
google.protobuf.Value configs = 1;
73+
74+
// dependencies can be used to refer to other existing resources
75+
// as dependency of this resource.
6976
repeated ResourceDependency dependencies = 2;
7077
}
7178

0 commit comments

Comments
 (0)