Skip to content

Commit c172b7d

Browse files
authored
Updated subtree from https://github.com/azure/azure-functions-language-worker-protobuf. Branch: dev. Commit:ed55563d9d83ca78c1d268aaf9e8deda1ee51cd2 (#268)
1 parent 310f48b commit c172b7d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/main/azure-functions-language-worker-protobuf/src/proto/FunctionRpc.proto

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,11 +301,21 @@ message BindingInfo {
301301
inout = 2;
302302
}
303303

304+
// Indicates the type of the data for the binding
305+
enum DataType {
306+
undefined = 0;
307+
string = 1;
308+
binary = 2;
309+
stream = 3;
310+
}
311+
304312
// Type of binding (e.g. HttpTrigger)
305313
string type = 2;
306314

307315
// Direction of the given binding
308316
Direction direction = 3;
317+
318+
DataType data_type = 4;
309319
}
310320

311321
// Used to send logs back to the Host

0 commit comments

Comments
 (0)