Skip to content

Commit 0b37c56

Browse files
m-trieuVardhanThigle
authored andcommitted
add endpoint type to WorkerMetadataResponse proto (apache#33953)
* add endpoint type to WorkerMetadataResponse proto * add default value to endpoint_type
1 parent 1920be4 commit 0b37c56

File tree

1 file changed

+9
-0
lines changed
  • runners/google-cloud-dataflow-java/worker/windmill/src/main/proto

1 file changed

+9
-0
lines changed

runners/google-cloud-dataflow-java/worker/windmill/src/main/proto/windmill.proto

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -926,6 +926,15 @@ message WorkerMetadataResponse {
926926
// Used to set gRPC authority.
927927
optional string external_endpoint = 5;
928928

929+
enum EndpointType {
930+
UNKNOWN = 0;
931+
CLOUDPATH = 1;
932+
BORG = 2;
933+
DIRECTPATH = 3;
934+
}
935+
936+
optional EndpointType endpoint_type = 6 [default = CLOUDPATH];
937+
929938
reserved 4;
930939
}
931940

0 commit comments

Comments
 (0)