Skip to content

Commit 5e79287

Browse files
committed
upd writer
1 parent 903984e commit 5e79287

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

proto/aserto/directory/writer/v4/writer.proto

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,25 @@ service Writer {
133133
rpc Import(stream ImportRequest) returns (stream ImportResponse) {}
134134
}
135135

136-
message SetManifestRequest {}
136+
message SetManifestRequest {
137+
// manifest body
138+
bytes body = 1;
139+
}
137140

138-
message SetManifestResponse {}
141+
message SetManifestResponse {
142+
// manifest instance
143+
aserto.directory.common.v4.Manifest result = 1;
144+
}
139145

140-
message DeleteManifestRequest {}
146+
message DeleteManifestRequest {
147+
// empty request
148+
google.protobuf.Empty empty = 1;
149+
}
141150

142-
message DeleteManifestResponse {}
151+
message DeleteManifestResponse {
152+
// empty result
153+
google.protobuf.Empty result = 1;
154+
}
143155

144156
message SetObjectRequest {
145157
// object instance

0 commit comments

Comments
 (0)