File tree Expand file tree Collapse file tree 3 files changed +361
-150
lines changed Expand file tree Collapse file tree 3 files changed +361
-150
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,16 @@ service IngressInternal {
31
31
option (psrpc.options ).multi = true ;
32
32
option (psrpc.options ).topics = true ;
33
33
};
34
+
35
+ rpc KillIngressSession (KillIngressSessionRequest ) returns (google .protobuf .Empty ) {
36
+ option (psrpc.options ) = {
37
+ topics : true
38
+ topic_params : {
39
+ names : ["ingress_id", "resource_id" ]
40
+ typed : false
41
+ }
42
+ };
43
+ };
34
44
}
35
45
36
46
service IngressHandler {
@@ -52,7 +62,8 @@ service IngressHandler {
52
62
message ListActiveIngressRequest {}
53
63
54
64
message ListActiveIngressResponse {
55
- repeated string ingress_ids = 1 ;
65
+ repeated string ingress_ids = 1 [deprecated = true ];
66
+ repeated IngressSession ingress_sessions = 2 ;
56
67
}
57
68
58
69
message DeleteWHIPResourceRequest {
@@ -78,3 +89,13 @@ message StartIngressRequest {
78
89
string ws_url = 3 ;
79
90
map <string ,string > logging_fields = 4 ;
80
91
}
92
+
93
+ message IngressSession {
94
+ string ingress_id = 1 ;
95
+ string resource_id = 2 ;
96
+ }
97
+
98
+ message KillIngressSessionRequest {
99
+ IngressSession session = 1 ;
100
+ }
101
+
You can’t perform that action at this time.
0 commit comments