@@ -16,6 +16,8 @@ interface IOperatorService extends grpc.ServiceDefinition<grpc.UntypedServiceImp
16
16
getResiliency : IOperatorService_IGetResiliency ;
17
17
listResiliency : IOperatorService_IListResiliency ;
18
18
listSubscriptionsV2 : IOperatorService_IListSubscriptionsV2 ;
19
+ listHTTPEndpoints : IOperatorService_IListHTTPEndpoints ;
20
+ hTTPEndpointUpdate : IOperatorService_IHTTPEndpointUpdate ;
19
21
}
20
22
21
23
interface IOperatorService_IComponentUpdate extends grpc . MethodDefinition < dapr_proto_operator_v1_operator_pb . ComponentUpdateRequest , dapr_proto_operator_v1_operator_pb . ComponentUpdateEvent > {
@@ -81,6 +83,24 @@ interface IOperatorService_IListSubscriptionsV2 extends grpc.MethodDefinition<da
81
83
responseSerialize : grpc . serialize < dapr_proto_operator_v1_operator_pb . ListSubscriptionsResponse > ;
82
84
responseDeserialize : grpc . deserialize < dapr_proto_operator_v1_operator_pb . ListSubscriptionsResponse > ;
83
85
}
86
+ interface IOperatorService_IListHTTPEndpoints extends grpc . MethodDefinition < dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsRequest , dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsResponse > {
87
+ path : "/dapr.proto.operator.v1.Operator/ListHTTPEndpoints" ;
88
+ requestStream : false ;
89
+ responseStream : false ;
90
+ requestSerialize : grpc . serialize < dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsRequest > ;
91
+ requestDeserialize : grpc . deserialize < dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsRequest > ;
92
+ responseSerialize : grpc . serialize < dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsResponse > ;
93
+ responseDeserialize : grpc . deserialize < dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsResponse > ;
94
+ }
95
+ interface IOperatorService_IHTTPEndpointUpdate extends grpc . MethodDefinition < dapr_proto_operator_v1_operator_pb . HTTPEndpointUpdateRequest , dapr_proto_operator_v1_operator_pb . HTTPEndpointUpdateEvent > {
96
+ path : "/dapr.proto.operator.v1.Operator/HTTPEndpointUpdate" ;
97
+ requestStream : false ;
98
+ responseStream : true ;
99
+ requestSerialize : grpc . serialize < dapr_proto_operator_v1_operator_pb . HTTPEndpointUpdateRequest > ;
100
+ requestDeserialize : grpc . deserialize < dapr_proto_operator_v1_operator_pb . HTTPEndpointUpdateRequest > ;
101
+ responseSerialize : grpc . serialize < dapr_proto_operator_v1_operator_pb . HTTPEndpointUpdateEvent > ;
102
+ responseDeserialize : grpc . deserialize < dapr_proto_operator_v1_operator_pb . HTTPEndpointUpdateEvent > ;
103
+ }
84
104
85
105
export const OperatorService : IOperatorService ;
86
106
@@ -92,6 +112,8 @@ export interface IOperatorServer extends grpc.UntypedServiceImplementation {
92
112
getResiliency : grpc . handleUnaryCall < dapr_proto_operator_v1_operator_pb . GetResiliencyRequest , dapr_proto_operator_v1_operator_pb . GetResiliencyResponse > ;
93
113
listResiliency : grpc . handleUnaryCall < dapr_proto_operator_v1_operator_pb . ListResiliencyRequest , dapr_proto_operator_v1_operator_pb . ListResiliencyResponse > ;
94
114
listSubscriptionsV2 : grpc . handleUnaryCall < dapr_proto_operator_v1_operator_pb . ListSubscriptionsRequest , dapr_proto_operator_v1_operator_pb . ListSubscriptionsResponse > ;
115
+ listHTTPEndpoints : grpc . handleUnaryCall < dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsRequest , dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsResponse > ;
116
+ hTTPEndpointUpdate : grpc . handleServerStreamingCall < dapr_proto_operator_v1_operator_pb . HTTPEndpointUpdateRequest , dapr_proto_operator_v1_operator_pb . HTTPEndpointUpdateEvent > ;
95
117
}
96
118
97
119
export interface IOperatorClient {
@@ -115,6 +137,11 @@ export interface IOperatorClient {
115
137
listSubscriptionsV2 ( request : dapr_proto_operator_v1_operator_pb . ListSubscriptionsRequest , callback : ( error : grpc . ServiceError | null , response : dapr_proto_operator_v1_operator_pb . ListSubscriptionsResponse ) => void ) : grpc . ClientUnaryCall ;
116
138
listSubscriptionsV2 ( request : dapr_proto_operator_v1_operator_pb . ListSubscriptionsRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : dapr_proto_operator_v1_operator_pb . ListSubscriptionsResponse ) => void ) : grpc . ClientUnaryCall ;
117
139
listSubscriptionsV2 ( request : dapr_proto_operator_v1_operator_pb . ListSubscriptionsRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : dapr_proto_operator_v1_operator_pb . ListSubscriptionsResponse ) => void ) : grpc . ClientUnaryCall ;
140
+ listHTTPEndpoints ( request : dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsRequest , callback : ( error : grpc . ServiceError | null , response : dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsResponse ) => void ) : grpc . ClientUnaryCall ;
141
+ listHTTPEndpoints ( request : dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsResponse ) => void ) : grpc . ClientUnaryCall ;
142
+ listHTTPEndpoints ( request : dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsResponse ) => void ) : grpc . ClientUnaryCall ;
143
+ hTTPEndpointUpdate ( request : dapr_proto_operator_v1_operator_pb . HTTPEndpointUpdateRequest , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < dapr_proto_operator_v1_operator_pb . HTTPEndpointUpdateEvent > ;
144
+ hTTPEndpointUpdate ( request : dapr_proto_operator_v1_operator_pb . HTTPEndpointUpdateRequest , metadata ?: grpc . Metadata , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < dapr_proto_operator_v1_operator_pb . HTTPEndpointUpdateEvent > ;
118
145
}
119
146
120
147
export class OperatorClient extends grpc . Client implements IOperatorClient {
@@ -139,4 +166,9 @@ export class OperatorClient extends grpc.Client implements IOperatorClient {
139
166
public listSubscriptionsV2 ( request : dapr_proto_operator_v1_operator_pb . ListSubscriptionsRequest , callback : ( error : grpc . ServiceError | null , response : dapr_proto_operator_v1_operator_pb . ListSubscriptionsResponse ) => void ) : grpc . ClientUnaryCall ;
140
167
public listSubscriptionsV2 ( request : dapr_proto_operator_v1_operator_pb . ListSubscriptionsRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : dapr_proto_operator_v1_operator_pb . ListSubscriptionsResponse ) => void ) : grpc . ClientUnaryCall ;
141
168
public listSubscriptionsV2 ( request : dapr_proto_operator_v1_operator_pb . ListSubscriptionsRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : dapr_proto_operator_v1_operator_pb . ListSubscriptionsResponse ) => void ) : grpc . ClientUnaryCall ;
169
+ public listHTTPEndpoints ( request : dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsRequest , callback : ( error : grpc . ServiceError | null , response : dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsResponse ) => void ) : grpc . ClientUnaryCall ;
170
+ public listHTTPEndpoints ( request : dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsResponse ) => void ) : grpc . ClientUnaryCall ;
171
+ public listHTTPEndpoints ( request : dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : dapr_proto_operator_v1_operator_pb . ListHTTPEndpointsResponse ) => void ) : grpc . ClientUnaryCall ;
172
+ public hTTPEndpointUpdate ( request : dapr_proto_operator_v1_operator_pb . HTTPEndpointUpdateRequest , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < dapr_proto_operator_v1_operator_pb . HTTPEndpointUpdateEvent > ;
173
+ public hTTPEndpointUpdate ( request : dapr_proto_operator_v1_operator_pb . HTTPEndpointUpdateRequest , metadata ?: grpc . Metadata , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < dapr_proto_operator_v1_operator_pb . HTTPEndpointUpdateEvent > ;
142
174
}
0 commit comments