kurtosis-sdk 0.49.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/core/kurtosis_core_rpc_api_bindings/api_container_service_grpc_pb.d.ts +110 -0
- package/build/core/kurtosis_core_rpc_api_bindings/api_container_service_grpc_pb.js +581 -0
- package/build/core/kurtosis_core_rpc_api_bindings/api_container_service_grpc_web_pb.d.ts +236 -0
- package/build/core/kurtosis_core_rpc_api_bindings/api_container_service_grpc_web_pb.js +1174 -0
- package/build/core/kurtosis_core_rpc_api_bindings/api_container_service_pb.d.ts +918 -0
- package/build/core/kurtosis_core_rpc_api_bindings/api_container_service_pb.js +7616 -0
- package/build/core/kurtosis_core_rpc_api_bindings/executable_module_service_grpc_pb.d.ts +30 -0
- package/build/core/kurtosis_core_rpc_api_bindings/executable_module_service_grpc_pb.js +70 -0
- package/build/core/kurtosis_core_rpc_api_bindings/executable_module_service_grpc_web_pb.d.ts +44 -0
- package/build/core/kurtosis_core_rpc_api_bindings/executable_module_service_grpc_web_pb.js +198 -0
- package/build/core/kurtosis_core_rpc_api_bindings/executable_module_service_pb.d.ts +41 -0
- package/build/core/kurtosis_core_rpc_api_bindings/executable_module_service_pb.js +324 -0
- package/build/core/lib/constructor_calls.d.ts +33 -0
- package/build/core/lib/constructor_calls.js +328 -0
- package/build/core/lib/enclaves/enclave_context.d.ts +39 -0
- package/build/core/lib/enclaves/enclave_context.js +501 -0
- package/build/core/lib/enclaves/generic_api_container_client.d.ts +23 -0
- package/build/core/lib/enclaves/generic_api_container_client.js +6 -0
- package/build/core/lib/enclaves/generic_path_joiner.d.ts +3 -0
- package/build/core/lib/enclaves/generic_path_joiner.js +6 -0
- package/build/core/lib/enclaves/generic_tgz_archiver.d.ts +4 -0
- package/build/core/lib/enclaves/generic_tgz_archiver.js +2 -0
- package/build/core/lib/enclaves/grpc_node_api_container_client.d.ts +29 -0
- package/build/core/lib/enclaves/grpc_node_api_container_client.js +415 -0
- package/build/core/lib/enclaves/grpc_web_api_container_client.d.ts +28 -0
- package/build/core/lib/enclaves/grpc_web_api_container_client.js +415 -0
- package/build/core/lib/enclaves/node_tgz_archiver.d.ts +6 -0
- package/build/core/lib/enclaves/node_tgz_archiver.js +94 -0
- package/build/core/lib/enclaves/partition_connection.d.ts +20 -0
- package/build/core/lib/enclaves/partition_connection.js +62 -0
- package/build/core/lib/enclaves/template_and_data.d.ts +5 -0
- package/build/core/lib/enclaves/template_and_data.js +11 -0
- package/build/core/lib/enclaves/web_tgz_archiver.d.ts +5 -0
- package/build/core/lib/enclaves/web_tgz_archiver.js +26 -0
- package/build/core/lib/modules/module_context.d.ts +9 -0
- package/build/core/lib/modules/module_context.js +34 -0
- package/build/core/lib/services/container_config.d.ts +39 -0
- package/build/core/lib/services/container_config.js +85 -0
- package/build/core/lib/services/port_spec.d.ts +11 -0
- package/build/core/lib/services/port_spec.js +16 -0
- package/build/core/lib/services/service.d.ts +1 -0
- package/build/core/lib/services/service.js +6 -0
- package/build/core/lib/services/service_context.d.ts +19 -0
- package/build/core/lib/services/service_context.js +58 -0
- package/build/core/module_launch_api/args_io.d.ts +4 -0
- package/build/core/module_launch_api/args_io.js +60 -0
- package/build/core/module_launch_api/module_container_args.d.ts +8 -0
- package/build/core/module_launch_api/module_container_args.js +24 -0
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_grpc_pb.d.ts +50 -0
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_grpc_pb.js +186 -0
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_grpc_web_pb.d.ts +92 -0
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_grpc_web_pb.js +442 -0
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_pb.d.ts +267 -0
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_pb.js +2141 -0
- package/build/engine/lib/constructor_calls.d.ts +5 -0
- package/build/engine/lib/constructor_calls.js +34 -0
- package/build/engine/lib/kurtosis_context/generic_engine_client.d.ts +10 -0
- package/build/engine/lib/kurtosis_context/generic_engine_client.js +2 -0
- package/build/engine/lib/kurtosis_context/grpc_node_engine_client.d.ts +14 -0
- package/build/engine/lib/kurtosis_context/grpc_node_engine_client.js +165 -0
- package/build/engine/lib/kurtosis_context/grpc_web_engine_client.d.ts +14 -0
- package/build/engine/lib/kurtosis_context/grpc_web_engine_client.js +165 -0
- package/build/engine/lib/kurtosis_context/kurtosis_context.d.ts +19 -0
- package/build/engine/lib/kurtosis_context/kurtosis_context.js +236 -0
- package/build/index.d.ts +19 -0
- package/build/index.js +55 -0
- package/build/kurtosis_version/kurtosis_version.d.ts +1 -0
- package/build/kurtosis_version/kurtosis_version.js +8 -0
- package/package.json +59 -0
|
@@ -0,0 +1,1174 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview gRPC-Web generated client stub for api_container_api
|
|
3
|
+
* @enhanceable
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// GENERATED CODE -- DO NOT EDIT!
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
/* eslint-disable */
|
|
11
|
+
// @ts-nocheck
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
const grpc = {};
|
|
16
|
+
grpc.web = require('grpc-web');
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
var google_protobuf_empty_pb = require('google-protobuf/google/protobuf/empty_pb.js')
|
|
20
|
+
const proto = {};
|
|
21
|
+
proto.api_container_api = require('./api_container_service_pb.js');
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @param {string} hostname
|
|
25
|
+
* @param {?Object} credentials
|
|
26
|
+
* @param {?grpc.web.ClientOptions} options
|
|
27
|
+
* @constructor
|
|
28
|
+
* @struct
|
|
29
|
+
* @final
|
|
30
|
+
*/
|
|
31
|
+
proto.api_container_api.ApiContainerServiceClient =
|
|
32
|
+
function(hostname, credentials, options) {
|
|
33
|
+
if (!options) options = {};
|
|
34
|
+
options.format = 'text';
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* @private @const {!grpc.web.GrpcWebClientBase} The client
|
|
38
|
+
*/
|
|
39
|
+
this.client_ = new grpc.web.GrpcWebClientBase(options);
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @private @const {string} The hostname
|
|
43
|
+
*/
|
|
44
|
+
this.hostname_ = hostname;
|
|
45
|
+
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* @param {string} hostname
|
|
51
|
+
* @param {?Object} credentials
|
|
52
|
+
* @param {?grpc.web.ClientOptions} options
|
|
53
|
+
* @constructor
|
|
54
|
+
* @struct
|
|
55
|
+
* @final
|
|
56
|
+
*/
|
|
57
|
+
proto.api_container_api.ApiContainerServicePromiseClient =
|
|
58
|
+
function(hostname, credentials, options) {
|
|
59
|
+
if (!options) options = {};
|
|
60
|
+
options.format = 'text';
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* @private @const {!grpc.web.GrpcWebClientBase} The client
|
|
64
|
+
*/
|
|
65
|
+
this.client_ = new grpc.web.GrpcWebClientBase(options);
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* @private @const {string} The hostname
|
|
69
|
+
*/
|
|
70
|
+
this.hostname_ = hostname;
|
|
71
|
+
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* @const
|
|
77
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
78
|
+
* !proto.api_container_api.LoadModuleArgs,
|
|
79
|
+
* !proto.api_container_api.LoadModuleResponse>}
|
|
80
|
+
*/
|
|
81
|
+
const methodDescriptor_ApiContainerService_LoadModule = new grpc.web.MethodDescriptor(
|
|
82
|
+
'/api_container_api.ApiContainerService/LoadModule',
|
|
83
|
+
grpc.web.MethodType.UNARY,
|
|
84
|
+
proto.api_container_api.LoadModuleArgs,
|
|
85
|
+
proto.api_container_api.LoadModuleResponse,
|
|
86
|
+
/**
|
|
87
|
+
* @param {!proto.api_container_api.LoadModuleArgs} request
|
|
88
|
+
* @return {!Uint8Array}
|
|
89
|
+
*/
|
|
90
|
+
function(request) {
|
|
91
|
+
return request.serializeBinary();
|
|
92
|
+
},
|
|
93
|
+
proto.api_container_api.LoadModuleResponse.deserializeBinary
|
|
94
|
+
);
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* @param {!proto.api_container_api.LoadModuleArgs} request The
|
|
99
|
+
* request proto
|
|
100
|
+
* @param {?Object<string, string>} metadata User defined
|
|
101
|
+
* call metadata
|
|
102
|
+
* @param {function(?grpc.web.RpcError, ?proto.api_container_api.LoadModuleResponse)}
|
|
103
|
+
* callback The callback function(error, response)
|
|
104
|
+
* @return {!grpc.web.ClientReadableStream<!proto.api_container_api.LoadModuleResponse>|undefined}
|
|
105
|
+
* The XHR Node Readable Stream
|
|
106
|
+
*/
|
|
107
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.loadModule =
|
|
108
|
+
function(request, metadata, callback) {
|
|
109
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
110
|
+
'/api_container_api.ApiContainerService/LoadModule',
|
|
111
|
+
request,
|
|
112
|
+
metadata || {},
|
|
113
|
+
methodDescriptor_ApiContainerService_LoadModule,
|
|
114
|
+
callback);
|
|
115
|
+
};
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* @param {!proto.api_container_api.LoadModuleArgs} request The
|
|
120
|
+
* request proto
|
|
121
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
122
|
+
* call metadata
|
|
123
|
+
* @return {!Promise<!proto.api_container_api.LoadModuleResponse>}
|
|
124
|
+
* Promise that resolves to the response
|
|
125
|
+
*/
|
|
126
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.loadModule =
|
|
127
|
+
function(request, metadata) {
|
|
128
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
129
|
+
'/api_container_api.ApiContainerService/LoadModule',
|
|
130
|
+
request,
|
|
131
|
+
metadata || {},
|
|
132
|
+
methodDescriptor_ApiContainerService_LoadModule);
|
|
133
|
+
};
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* @const
|
|
138
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
139
|
+
* !proto.api_container_api.GetModulesArgs,
|
|
140
|
+
* !proto.api_container_api.GetModulesResponse>}
|
|
141
|
+
*/
|
|
142
|
+
const methodDescriptor_ApiContainerService_GetModules = new grpc.web.MethodDescriptor(
|
|
143
|
+
'/api_container_api.ApiContainerService/GetModules',
|
|
144
|
+
grpc.web.MethodType.UNARY,
|
|
145
|
+
proto.api_container_api.GetModulesArgs,
|
|
146
|
+
proto.api_container_api.GetModulesResponse,
|
|
147
|
+
/**
|
|
148
|
+
* @param {!proto.api_container_api.GetModulesArgs} request
|
|
149
|
+
* @return {!Uint8Array}
|
|
150
|
+
*/
|
|
151
|
+
function(request) {
|
|
152
|
+
return request.serializeBinary();
|
|
153
|
+
},
|
|
154
|
+
proto.api_container_api.GetModulesResponse.deserializeBinary
|
|
155
|
+
);
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
/**
|
|
159
|
+
* @param {!proto.api_container_api.GetModulesArgs} request The
|
|
160
|
+
* request proto
|
|
161
|
+
* @param {?Object<string, string>} metadata User defined
|
|
162
|
+
* call metadata
|
|
163
|
+
* @param {function(?grpc.web.RpcError, ?proto.api_container_api.GetModulesResponse)}
|
|
164
|
+
* callback The callback function(error, response)
|
|
165
|
+
* @return {!grpc.web.ClientReadableStream<!proto.api_container_api.GetModulesResponse>|undefined}
|
|
166
|
+
* The XHR Node Readable Stream
|
|
167
|
+
*/
|
|
168
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.getModules =
|
|
169
|
+
function(request, metadata, callback) {
|
|
170
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
171
|
+
'/api_container_api.ApiContainerService/GetModules',
|
|
172
|
+
request,
|
|
173
|
+
metadata || {},
|
|
174
|
+
methodDescriptor_ApiContainerService_GetModules,
|
|
175
|
+
callback);
|
|
176
|
+
};
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* @param {!proto.api_container_api.GetModulesArgs} request The
|
|
181
|
+
* request proto
|
|
182
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
183
|
+
* call metadata
|
|
184
|
+
* @return {!Promise<!proto.api_container_api.GetModulesResponse>}
|
|
185
|
+
* Promise that resolves to the response
|
|
186
|
+
*/
|
|
187
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.getModules =
|
|
188
|
+
function(request, metadata) {
|
|
189
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
190
|
+
'/api_container_api.ApiContainerService/GetModules',
|
|
191
|
+
request,
|
|
192
|
+
metadata || {},
|
|
193
|
+
methodDescriptor_ApiContainerService_GetModules);
|
|
194
|
+
};
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* @const
|
|
199
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
200
|
+
* !proto.api_container_api.UnloadModuleArgs,
|
|
201
|
+
* !proto.api_container_api.UnloadModuleResponse>}
|
|
202
|
+
*/
|
|
203
|
+
const methodDescriptor_ApiContainerService_UnloadModule = new grpc.web.MethodDescriptor(
|
|
204
|
+
'/api_container_api.ApiContainerService/UnloadModule',
|
|
205
|
+
grpc.web.MethodType.UNARY,
|
|
206
|
+
proto.api_container_api.UnloadModuleArgs,
|
|
207
|
+
proto.api_container_api.UnloadModuleResponse,
|
|
208
|
+
/**
|
|
209
|
+
* @param {!proto.api_container_api.UnloadModuleArgs} request
|
|
210
|
+
* @return {!Uint8Array}
|
|
211
|
+
*/
|
|
212
|
+
function(request) {
|
|
213
|
+
return request.serializeBinary();
|
|
214
|
+
},
|
|
215
|
+
proto.api_container_api.UnloadModuleResponse.deserializeBinary
|
|
216
|
+
);
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* @param {!proto.api_container_api.UnloadModuleArgs} request The
|
|
221
|
+
* request proto
|
|
222
|
+
* @param {?Object<string, string>} metadata User defined
|
|
223
|
+
* call metadata
|
|
224
|
+
* @param {function(?grpc.web.RpcError, ?proto.api_container_api.UnloadModuleResponse)}
|
|
225
|
+
* callback The callback function(error, response)
|
|
226
|
+
* @return {!grpc.web.ClientReadableStream<!proto.api_container_api.UnloadModuleResponse>|undefined}
|
|
227
|
+
* The XHR Node Readable Stream
|
|
228
|
+
*/
|
|
229
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.unloadModule =
|
|
230
|
+
function(request, metadata, callback) {
|
|
231
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
232
|
+
'/api_container_api.ApiContainerService/UnloadModule',
|
|
233
|
+
request,
|
|
234
|
+
metadata || {},
|
|
235
|
+
methodDescriptor_ApiContainerService_UnloadModule,
|
|
236
|
+
callback);
|
|
237
|
+
};
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
/**
|
|
241
|
+
* @param {!proto.api_container_api.UnloadModuleArgs} request The
|
|
242
|
+
* request proto
|
|
243
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
244
|
+
* call metadata
|
|
245
|
+
* @return {!Promise<!proto.api_container_api.UnloadModuleResponse>}
|
|
246
|
+
* Promise that resolves to the response
|
|
247
|
+
*/
|
|
248
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.unloadModule =
|
|
249
|
+
function(request, metadata) {
|
|
250
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
251
|
+
'/api_container_api.ApiContainerService/UnloadModule',
|
|
252
|
+
request,
|
|
253
|
+
metadata || {},
|
|
254
|
+
methodDescriptor_ApiContainerService_UnloadModule);
|
|
255
|
+
};
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
/**
|
|
259
|
+
* @const
|
|
260
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
261
|
+
* !proto.api_container_api.ExecuteModuleArgs,
|
|
262
|
+
* !proto.api_container_api.ExecuteModuleResponse>}
|
|
263
|
+
*/
|
|
264
|
+
const methodDescriptor_ApiContainerService_ExecuteModule = new grpc.web.MethodDescriptor(
|
|
265
|
+
'/api_container_api.ApiContainerService/ExecuteModule',
|
|
266
|
+
grpc.web.MethodType.UNARY,
|
|
267
|
+
proto.api_container_api.ExecuteModuleArgs,
|
|
268
|
+
proto.api_container_api.ExecuteModuleResponse,
|
|
269
|
+
/**
|
|
270
|
+
* @param {!proto.api_container_api.ExecuteModuleArgs} request
|
|
271
|
+
* @return {!Uint8Array}
|
|
272
|
+
*/
|
|
273
|
+
function(request) {
|
|
274
|
+
return request.serializeBinary();
|
|
275
|
+
},
|
|
276
|
+
proto.api_container_api.ExecuteModuleResponse.deserializeBinary
|
|
277
|
+
);
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
/**
|
|
281
|
+
* @param {!proto.api_container_api.ExecuteModuleArgs} request The
|
|
282
|
+
* request proto
|
|
283
|
+
* @param {?Object<string, string>} metadata User defined
|
|
284
|
+
* call metadata
|
|
285
|
+
* @param {function(?grpc.web.RpcError, ?proto.api_container_api.ExecuteModuleResponse)}
|
|
286
|
+
* callback The callback function(error, response)
|
|
287
|
+
* @return {!grpc.web.ClientReadableStream<!proto.api_container_api.ExecuteModuleResponse>|undefined}
|
|
288
|
+
* The XHR Node Readable Stream
|
|
289
|
+
*/
|
|
290
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.executeModule =
|
|
291
|
+
function(request, metadata, callback) {
|
|
292
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
293
|
+
'/api_container_api.ApiContainerService/ExecuteModule',
|
|
294
|
+
request,
|
|
295
|
+
metadata || {},
|
|
296
|
+
methodDescriptor_ApiContainerService_ExecuteModule,
|
|
297
|
+
callback);
|
|
298
|
+
};
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
/**
|
|
302
|
+
* @param {!proto.api_container_api.ExecuteModuleArgs} request The
|
|
303
|
+
* request proto
|
|
304
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
305
|
+
* call metadata
|
|
306
|
+
* @return {!Promise<!proto.api_container_api.ExecuteModuleResponse>}
|
|
307
|
+
* Promise that resolves to the response
|
|
308
|
+
*/
|
|
309
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.executeModule =
|
|
310
|
+
function(request, metadata) {
|
|
311
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
312
|
+
'/api_container_api.ApiContainerService/ExecuteModule',
|
|
313
|
+
request,
|
|
314
|
+
metadata || {},
|
|
315
|
+
methodDescriptor_ApiContainerService_ExecuteModule);
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
/**
|
|
320
|
+
* @const
|
|
321
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
322
|
+
* !proto.api_container_api.StartServicesArgs,
|
|
323
|
+
* !proto.api_container_api.StartServicesResponse>}
|
|
324
|
+
*/
|
|
325
|
+
const methodDescriptor_ApiContainerService_StartServices = new grpc.web.MethodDescriptor(
|
|
326
|
+
'/api_container_api.ApiContainerService/StartServices',
|
|
327
|
+
grpc.web.MethodType.UNARY,
|
|
328
|
+
proto.api_container_api.StartServicesArgs,
|
|
329
|
+
proto.api_container_api.StartServicesResponse,
|
|
330
|
+
/**
|
|
331
|
+
* @param {!proto.api_container_api.StartServicesArgs} request
|
|
332
|
+
* @return {!Uint8Array}
|
|
333
|
+
*/
|
|
334
|
+
function(request) {
|
|
335
|
+
return request.serializeBinary();
|
|
336
|
+
},
|
|
337
|
+
proto.api_container_api.StartServicesResponse.deserializeBinary
|
|
338
|
+
);
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
/**
|
|
342
|
+
* @param {!proto.api_container_api.StartServicesArgs} request The
|
|
343
|
+
* request proto
|
|
344
|
+
* @param {?Object<string, string>} metadata User defined
|
|
345
|
+
* call metadata
|
|
346
|
+
* @param {function(?grpc.web.RpcError, ?proto.api_container_api.StartServicesResponse)}
|
|
347
|
+
* callback The callback function(error, response)
|
|
348
|
+
* @return {!grpc.web.ClientReadableStream<!proto.api_container_api.StartServicesResponse>|undefined}
|
|
349
|
+
* The XHR Node Readable Stream
|
|
350
|
+
*/
|
|
351
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.startServices =
|
|
352
|
+
function(request, metadata, callback) {
|
|
353
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
354
|
+
'/api_container_api.ApiContainerService/StartServices',
|
|
355
|
+
request,
|
|
356
|
+
metadata || {},
|
|
357
|
+
methodDescriptor_ApiContainerService_StartServices,
|
|
358
|
+
callback);
|
|
359
|
+
};
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
/**
|
|
363
|
+
* @param {!proto.api_container_api.StartServicesArgs} request The
|
|
364
|
+
* request proto
|
|
365
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
366
|
+
* call metadata
|
|
367
|
+
* @return {!Promise<!proto.api_container_api.StartServicesResponse>}
|
|
368
|
+
* Promise that resolves to the response
|
|
369
|
+
*/
|
|
370
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.startServices =
|
|
371
|
+
function(request, metadata) {
|
|
372
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
373
|
+
'/api_container_api.ApiContainerService/StartServices',
|
|
374
|
+
request,
|
|
375
|
+
metadata || {},
|
|
376
|
+
methodDescriptor_ApiContainerService_StartServices);
|
|
377
|
+
};
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
/**
|
|
381
|
+
* @const
|
|
382
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
383
|
+
* !proto.api_container_api.GetServicesArgs,
|
|
384
|
+
* !proto.api_container_api.GetServicesResponse>}
|
|
385
|
+
*/
|
|
386
|
+
const methodDescriptor_ApiContainerService_GetServices = new grpc.web.MethodDescriptor(
|
|
387
|
+
'/api_container_api.ApiContainerService/GetServices',
|
|
388
|
+
grpc.web.MethodType.UNARY,
|
|
389
|
+
proto.api_container_api.GetServicesArgs,
|
|
390
|
+
proto.api_container_api.GetServicesResponse,
|
|
391
|
+
/**
|
|
392
|
+
* @param {!proto.api_container_api.GetServicesArgs} request
|
|
393
|
+
* @return {!Uint8Array}
|
|
394
|
+
*/
|
|
395
|
+
function(request) {
|
|
396
|
+
return request.serializeBinary();
|
|
397
|
+
},
|
|
398
|
+
proto.api_container_api.GetServicesResponse.deserializeBinary
|
|
399
|
+
);
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
/**
|
|
403
|
+
* @param {!proto.api_container_api.GetServicesArgs} request The
|
|
404
|
+
* request proto
|
|
405
|
+
* @param {?Object<string, string>} metadata User defined
|
|
406
|
+
* call metadata
|
|
407
|
+
* @param {function(?grpc.web.RpcError, ?proto.api_container_api.GetServicesResponse)}
|
|
408
|
+
* callback The callback function(error, response)
|
|
409
|
+
* @return {!grpc.web.ClientReadableStream<!proto.api_container_api.GetServicesResponse>|undefined}
|
|
410
|
+
* The XHR Node Readable Stream
|
|
411
|
+
*/
|
|
412
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.getServices =
|
|
413
|
+
function(request, metadata, callback) {
|
|
414
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
415
|
+
'/api_container_api.ApiContainerService/GetServices',
|
|
416
|
+
request,
|
|
417
|
+
metadata || {},
|
|
418
|
+
methodDescriptor_ApiContainerService_GetServices,
|
|
419
|
+
callback);
|
|
420
|
+
};
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
/**
|
|
424
|
+
* @param {!proto.api_container_api.GetServicesArgs} request The
|
|
425
|
+
* request proto
|
|
426
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
427
|
+
* call metadata
|
|
428
|
+
* @return {!Promise<!proto.api_container_api.GetServicesResponse>}
|
|
429
|
+
* Promise that resolves to the response
|
|
430
|
+
*/
|
|
431
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.getServices =
|
|
432
|
+
function(request, metadata) {
|
|
433
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
434
|
+
'/api_container_api.ApiContainerService/GetServices',
|
|
435
|
+
request,
|
|
436
|
+
metadata || {},
|
|
437
|
+
methodDescriptor_ApiContainerService_GetServices);
|
|
438
|
+
};
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
/**
|
|
442
|
+
* @const
|
|
443
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
444
|
+
* !proto.api_container_api.RemoveServiceArgs,
|
|
445
|
+
* !proto.api_container_api.RemoveServiceResponse>}
|
|
446
|
+
*/
|
|
447
|
+
const methodDescriptor_ApiContainerService_RemoveService = new grpc.web.MethodDescriptor(
|
|
448
|
+
'/api_container_api.ApiContainerService/RemoveService',
|
|
449
|
+
grpc.web.MethodType.UNARY,
|
|
450
|
+
proto.api_container_api.RemoveServiceArgs,
|
|
451
|
+
proto.api_container_api.RemoveServiceResponse,
|
|
452
|
+
/**
|
|
453
|
+
* @param {!proto.api_container_api.RemoveServiceArgs} request
|
|
454
|
+
* @return {!Uint8Array}
|
|
455
|
+
*/
|
|
456
|
+
function(request) {
|
|
457
|
+
return request.serializeBinary();
|
|
458
|
+
},
|
|
459
|
+
proto.api_container_api.RemoveServiceResponse.deserializeBinary
|
|
460
|
+
);
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
/**
|
|
464
|
+
* @param {!proto.api_container_api.RemoveServiceArgs} request The
|
|
465
|
+
* request proto
|
|
466
|
+
* @param {?Object<string, string>} metadata User defined
|
|
467
|
+
* call metadata
|
|
468
|
+
* @param {function(?grpc.web.RpcError, ?proto.api_container_api.RemoveServiceResponse)}
|
|
469
|
+
* callback The callback function(error, response)
|
|
470
|
+
* @return {!grpc.web.ClientReadableStream<!proto.api_container_api.RemoveServiceResponse>|undefined}
|
|
471
|
+
* The XHR Node Readable Stream
|
|
472
|
+
*/
|
|
473
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.removeService =
|
|
474
|
+
function(request, metadata, callback) {
|
|
475
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
476
|
+
'/api_container_api.ApiContainerService/RemoveService',
|
|
477
|
+
request,
|
|
478
|
+
metadata || {},
|
|
479
|
+
methodDescriptor_ApiContainerService_RemoveService,
|
|
480
|
+
callback);
|
|
481
|
+
};
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
/**
|
|
485
|
+
* @param {!proto.api_container_api.RemoveServiceArgs} request The
|
|
486
|
+
* request proto
|
|
487
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
488
|
+
* call metadata
|
|
489
|
+
* @return {!Promise<!proto.api_container_api.RemoveServiceResponse>}
|
|
490
|
+
* Promise that resolves to the response
|
|
491
|
+
*/
|
|
492
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.removeService =
|
|
493
|
+
function(request, metadata) {
|
|
494
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
495
|
+
'/api_container_api.ApiContainerService/RemoveService',
|
|
496
|
+
request,
|
|
497
|
+
metadata || {},
|
|
498
|
+
methodDescriptor_ApiContainerService_RemoveService);
|
|
499
|
+
};
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
/**
|
|
503
|
+
* @const
|
|
504
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
505
|
+
* !proto.api_container_api.RepartitionArgs,
|
|
506
|
+
* !proto.google.protobuf.Empty>}
|
|
507
|
+
*/
|
|
508
|
+
const methodDescriptor_ApiContainerService_Repartition = new grpc.web.MethodDescriptor(
|
|
509
|
+
'/api_container_api.ApiContainerService/Repartition',
|
|
510
|
+
grpc.web.MethodType.UNARY,
|
|
511
|
+
proto.api_container_api.RepartitionArgs,
|
|
512
|
+
google_protobuf_empty_pb.Empty,
|
|
513
|
+
/**
|
|
514
|
+
* @param {!proto.api_container_api.RepartitionArgs} request
|
|
515
|
+
* @return {!Uint8Array}
|
|
516
|
+
*/
|
|
517
|
+
function(request) {
|
|
518
|
+
return request.serializeBinary();
|
|
519
|
+
},
|
|
520
|
+
google_protobuf_empty_pb.Empty.deserializeBinary
|
|
521
|
+
);
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
/**
|
|
525
|
+
* @param {!proto.api_container_api.RepartitionArgs} request The
|
|
526
|
+
* request proto
|
|
527
|
+
* @param {?Object<string, string>} metadata User defined
|
|
528
|
+
* call metadata
|
|
529
|
+
* @param {function(?grpc.web.RpcError, ?proto.google.protobuf.Empty)}
|
|
530
|
+
* callback The callback function(error, response)
|
|
531
|
+
* @return {!grpc.web.ClientReadableStream<!proto.google.protobuf.Empty>|undefined}
|
|
532
|
+
* The XHR Node Readable Stream
|
|
533
|
+
*/
|
|
534
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.repartition =
|
|
535
|
+
function(request, metadata, callback) {
|
|
536
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
537
|
+
'/api_container_api.ApiContainerService/Repartition',
|
|
538
|
+
request,
|
|
539
|
+
metadata || {},
|
|
540
|
+
methodDescriptor_ApiContainerService_Repartition,
|
|
541
|
+
callback);
|
|
542
|
+
};
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
/**
|
|
546
|
+
* @param {!proto.api_container_api.RepartitionArgs} request The
|
|
547
|
+
* request proto
|
|
548
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
549
|
+
* call metadata
|
|
550
|
+
* @return {!Promise<!proto.google.protobuf.Empty>}
|
|
551
|
+
* Promise that resolves to the response
|
|
552
|
+
*/
|
|
553
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.repartition =
|
|
554
|
+
function(request, metadata) {
|
|
555
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
556
|
+
'/api_container_api.ApiContainerService/Repartition',
|
|
557
|
+
request,
|
|
558
|
+
metadata || {},
|
|
559
|
+
methodDescriptor_ApiContainerService_Repartition);
|
|
560
|
+
};
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
/**
|
|
564
|
+
* @const
|
|
565
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
566
|
+
* !proto.api_container_api.ExecCommandArgs,
|
|
567
|
+
* !proto.api_container_api.ExecCommandResponse>}
|
|
568
|
+
*/
|
|
569
|
+
const methodDescriptor_ApiContainerService_ExecCommand = new grpc.web.MethodDescriptor(
|
|
570
|
+
'/api_container_api.ApiContainerService/ExecCommand',
|
|
571
|
+
grpc.web.MethodType.UNARY,
|
|
572
|
+
proto.api_container_api.ExecCommandArgs,
|
|
573
|
+
proto.api_container_api.ExecCommandResponse,
|
|
574
|
+
/**
|
|
575
|
+
* @param {!proto.api_container_api.ExecCommandArgs} request
|
|
576
|
+
* @return {!Uint8Array}
|
|
577
|
+
*/
|
|
578
|
+
function(request) {
|
|
579
|
+
return request.serializeBinary();
|
|
580
|
+
},
|
|
581
|
+
proto.api_container_api.ExecCommandResponse.deserializeBinary
|
|
582
|
+
);
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
/**
|
|
586
|
+
* @param {!proto.api_container_api.ExecCommandArgs} request The
|
|
587
|
+
* request proto
|
|
588
|
+
* @param {?Object<string, string>} metadata User defined
|
|
589
|
+
* call metadata
|
|
590
|
+
* @param {function(?grpc.web.RpcError, ?proto.api_container_api.ExecCommandResponse)}
|
|
591
|
+
* callback The callback function(error, response)
|
|
592
|
+
* @return {!grpc.web.ClientReadableStream<!proto.api_container_api.ExecCommandResponse>|undefined}
|
|
593
|
+
* The XHR Node Readable Stream
|
|
594
|
+
*/
|
|
595
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.execCommand =
|
|
596
|
+
function(request, metadata, callback) {
|
|
597
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
598
|
+
'/api_container_api.ApiContainerService/ExecCommand',
|
|
599
|
+
request,
|
|
600
|
+
metadata || {},
|
|
601
|
+
methodDescriptor_ApiContainerService_ExecCommand,
|
|
602
|
+
callback);
|
|
603
|
+
};
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
/**
|
|
607
|
+
* @param {!proto.api_container_api.ExecCommandArgs} request The
|
|
608
|
+
* request proto
|
|
609
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
610
|
+
* call metadata
|
|
611
|
+
* @return {!Promise<!proto.api_container_api.ExecCommandResponse>}
|
|
612
|
+
* Promise that resolves to the response
|
|
613
|
+
*/
|
|
614
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.execCommand =
|
|
615
|
+
function(request, metadata) {
|
|
616
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
617
|
+
'/api_container_api.ApiContainerService/ExecCommand',
|
|
618
|
+
request,
|
|
619
|
+
metadata || {},
|
|
620
|
+
methodDescriptor_ApiContainerService_ExecCommand);
|
|
621
|
+
};
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
/**
|
|
625
|
+
* @const
|
|
626
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
627
|
+
* !proto.api_container_api.PauseServiceArgs,
|
|
628
|
+
* !proto.google.protobuf.Empty>}
|
|
629
|
+
*/
|
|
630
|
+
const methodDescriptor_ApiContainerService_PauseService = new grpc.web.MethodDescriptor(
|
|
631
|
+
'/api_container_api.ApiContainerService/PauseService',
|
|
632
|
+
grpc.web.MethodType.UNARY,
|
|
633
|
+
proto.api_container_api.PauseServiceArgs,
|
|
634
|
+
google_protobuf_empty_pb.Empty,
|
|
635
|
+
/**
|
|
636
|
+
* @param {!proto.api_container_api.PauseServiceArgs} request
|
|
637
|
+
* @return {!Uint8Array}
|
|
638
|
+
*/
|
|
639
|
+
function(request) {
|
|
640
|
+
return request.serializeBinary();
|
|
641
|
+
},
|
|
642
|
+
google_protobuf_empty_pb.Empty.deserializeBinary
|
|
643
|
+
);
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
/**
|
|
647
|
+
* @param {!proto.api_container_api.PauseServiceArgs} request The
|
|
648
|
+
* request proto
|
|
649
|
+
* @param {?Object<string, string>} metadata User defined
|
|
650
|
+
* call metadata
|
|
651
|
+
* @param {function(?grpc.web.RpcError, ?proto.google.protobuf.Empty)}
|
|
652
|
+
* callback The callback function(error, response)
|
|
653
|
+
* @return {!grpc.web.ClientReadableStream<!proto.google.protobuf.Empty>|undefined}
|
|
654
|
+
* The XHR Node Readable Stream
|
|
655
|
+
*/
|
|
656
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.pauseService =
|
|
657
|
+
function(request, metadata, callback) {
|
|
658
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
659
|
+
'/api_container_api.ApiContainerService/PauseService',
|
|
660
|
+
request,
|
|
661
|
+
metadata || {},
|
|
662
|
+
methodDescriptor_ApiContainerService_PauseService,
|
|
663
|
+
callback);
|
|
664
|
+
};
|
|
665
|
+
|
|
666
|
+
|
|
667
|
+
/**
|
|
668
|
+
* @param {!proto.api_container_api.PauseServiceArgs} request The
|
|
669
|
+
* request proto
|
|
670
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
671
|
+
* call metadata
|
|
672
|
+
* @return {!Promise<!proto.google.protobuf.Empty>}
|
|
673
|
+
* Promise that resolves to the response
|
|
674
|
+
*/
|
|
675
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.pauseService =
|
|
676
|
+
function(request, metadata) {
|
|
677
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
678
|
+
'/api_container_api.ApiContainerService/PauseService',
|
|
679
|
+
request,
|
|
680
|
+
metadata || {},
|
|
681
|
+
methodDescriptor_ApiContainerService_PauseService);
|
|
682
|
+
};
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
/**
|
|
686
|
+
* @const
|
|
687
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
688
|
+
* !proto.api_container_api.UnpauseServiceArgs,
|
|
689
|
+
* !proto.google.protobuf.Empty>}
|
|
690
|
+
*/
|
|
691
|
+
const methodDescriptor_ApiContainerService_UnpauseService = new grpc.web.MethodDescriptor(
|
|
692
|
+
'/api_container_api.ApiContainerService/UnpauseService',
|
|
693
|
+
grpc.web.MethodType.UNARY,
|
|
694
|
+
proto.api_container_api.UnpauseServiceArgs,
|
|
695
|
+
google_protobuf_empty_pb.Empty,
|
|
696
|
+
/**
|
|
697
|
+
* @param {!proto.api_container_api.UnpauseServiceArgs} request
|
|
698
|
+
* @return {!Uint8Array}
|
|
699
|
+
*/
|
|
700
|
+
function(request) {
|
|
701
|
+
return request.serializeBinary();
|
|
702
|
+
},
|
|
703
|
+
google_protobuf_empty_pb.Empty.deserializeBinary
|
|
704
|
+
);
|
|
705
|
+
|
|
706
|
+
|
|
707
|
+
/**
|
|
708
|
+
* @param {!proto.api_container_api.UnpauseServiceArgs} request The
|
|
709
|
+
* request proto
|
|
710
|
+
* @param {?Object<string, string>} metadata User defined
|
|
711
|
+
* call metadata
|
|
712
|
+
* @param {function(?grpc.web.RpcError, ?proto.google.protobuf.Empty)}
|
|
713
|
+
* callback The callback function(error, response)
|
|
714
|
+
* @return {!grpc.web.ClientReadableStream<!proto.google.protobuf.Empty>|undefined}
|
|
715
|
+
* The XHR Node Readable Stream
|
|
716
|
+
*/
|
|
717
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.unpauseService =
|
|
718
|
+
function(request, metadata, callback) {
|
|
719
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
720
|
+
'/api_container_api.ApiContainerService/UnpauseService',
|
|
721
|
+
request,
|
|
722
|
+
metadata || {},
|
|
723
|
+
methodDescriptor_ApiContainerService_UnpauseService,
|
|
724
|
+
callback);
|
|
725
|
+
};
|
|
726
|
+
|
|
727
|
+
|
|
728
|
+
/**
|
|
729
|
+
* @param {!proto.api_container_api.UnpauseServiceArgs} request The
|
|
730
|
+
* request proto
|
|
731
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
732
|
+
* call metadata
|
|
733
|
+
* @return {!Promise<!proto.google.protobuf.Empty>}
|
|
734
|
+
* Promise that resolves to the response
|
|
735
|
+
*/
|
|
736
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.unpauseService =
|
|
737
|
+
function(request, metadata) {
|
|
738
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
739
|
+
'/api_container_api.ApiContainerService/UnpauseService',
|
|
740
|
+
request,
|
|
741
|
+
metadata || {},
|
|
742
|
+
methodDescriptor_ApiContainerService_UnpauseService);
|
|
743
|
+
};
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
/**
|
|
747
|
+
* @const
|
|
748
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
749
|
+
* !proto.api_container_api.WaitForHttpGetEndpointAvailabilityArgs,
|
|
750
|
+
* !proto.google.protobuf.Empty>}
|
|
751
|
+
*/
|
|
752
|
+
const methodDescriptor_ApiContainerService_WaitForHttpGetEndpointAvailability = new grpc.web.MethodDescriptor(
|
|
753
|
+
'/api_container_api.ApiContainerService/WaitForHttpGetEndpointAvailability',
|
|
754
|
+
grpc.web.MethodType.UNARY,
|
|
755
|
+
proto.api_container_api.WaitForHttpGetEndpointAvailabilityArgs,
|
|
756
|
+
google_protobuf_empty_pb.Empty,
|
|
757
|
+
/**
|
|
758
|
+
* @param {!proto.api_container_api.WaitForHttpGetEndpointAvailabilityArgs} request
|
|
759
|
+
* @return {!Uint8Array}
|
|
760
|
+
*/
|
|
761
|
+
function(request) {
|
|
762
|
+
return request.serializeBinary();
|
|
763
|
+
},
|
|
764
|
+
google_protobuf_empty_pb.Empty.deserializeBinary
|
|
765
|
+
);
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
/**
|
|
769
|
+
* @param {!proto.api_container_api.WaitForHttpGetEndpointAvailabilityArgs} request The
|
|
770
|
+
* request proto
|
|
771
|
+
* @param {?Object<string, string>} metadata User defined
|
|
772
|
+
* call metadata
|
|
773
|
+
* @param {function(?grpc.web.RpcError, ?proto.google.protobuf.Empty)}
|
|
774
|
+
* callback The callback function(error, response)
|
|
775
|
+
* @return {!grpc.web.ClientReadableStream<!proto.google.protobuf.Empty>|undefined}
|
|
776
|
+
* The XHR Node Readable Stream
|
|
777
|
+
*/
|
|
778
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.waitForHttpGetEndpointAvailability =
|
|
779
|
+
function(request, metadata, callback) {
|
|
780
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
781
|
+
'/api_container_api.ApiContainerService/WaitForHttpGetEndpointAvailability',
|
|
782
|
+
request,
|
|
783
|
+
metadata || {},
|
|
784
|
+
methodDescriptor_ApiContainerService_WaitForHttpGetEndpointAvailability,
|
|
785
|
+
callback);
|
|
786
|
+
};
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
/**
|
|
790
|
+
* @param {!proto.api_container_api.WaitForHttpGetEndpointAvailabilityArgs} request The
|
|
791
|
+
* request proto
|
|
792
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
793
|
+
* call metadata
|
|
794
|
+
* @return {!Promise<!proto.google.protobuf.Empty>}
|
|
795
|
+
* Promise that resolves to the response
|
|
796
|
+
*/
|
|
797
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.waitForHttpGetEndpointAvailability =
|
|
798
|
+
function(request, metadata) {
|
|
799
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
800
|
+
'/api_container_api.ApiContainerService/WaitForHttpGetEndpointAvailability',
|
|
801
|
+
request,
|
|
802
|
+
metadata || {},
|
|
803
|
+
methodDescriptor_ApiContainerService_WaitForHttpGetEndpointAvailability);
|
|
804
|
+
};
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
/**
|
|
808
|
+
* @const
|
|
809
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
810
|
+
* !proto.api_container_api.WaitForHttpPostEndpointAvailabilityArgs,
|
|
811
|
+
* !proto.google.protobuf.Empty>}
|
|
812
|
+
*/
|
|
813
|
+
const methodDescriptor_ApiContainerService_WaitForHttpPostEndpointAvailability = new grpc.web.MethodDescriptor(
|
|
814
|
+
'/api_container_api.ApiContainerService/WaitForHttpPostEndpointAvailability',
|
|
815
|
+
grpc.web.MethodType.UNARY,
|
|
816
|
+
proto.api_container_api.WaitForHttpPostEndpointAvailabilityArgs,
|
|
817
|
+
google_protobuf_empty_pb.Empty,
|
|
818
|
+
/**
|
|
819
|
+
* @param {!proto.api_container_api.WaitForHttpPostEndpointAvailabilityArgs} request
|
|
820
|
+
* @return {!Uint8Array}
|
|
821
|
+
*/
|
|
822
|
+
function(request) {
|
|
823
|
+
return request.serializeBinary();
|
|
824
|
+
},
|
|
825
|
+
google_protobuf_empty_pb.Empty.deserializeBinary
|
|
826
|
+
);
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
/**
|
|
830
|
+
* @param {!proto.api_container_api.WaitForHttpPostEndpointAvailabilityArgs} request The
|
|
831
|
+
* request proto
|
|
832
|
+
* @param {?Object<string, string>} metadata User defined
|
|
833
|
+
* call metadata
|
|
834
|
+
* @param {function(?grpc.web.RpcError, ?proto.google.protobuf.Empty)}
|
|
835
|
+
* callback The callback function(error, response)
|
|
836
|
+
* @return {!grpc.web.ClientReadableStream<!proto.google.protobuf.Empty>|undefined}
|
|
837
|
+
* The XHR Node Readable Stream
|
|
838
|
+
*/
|
|
839
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.waitForHttpPostEndpointAvailability =
|
|
840
|
+
function(request, metadata, callback) {
|
|
841
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
842
|
+
'/api_container_api.ApiContainerService/WaitForHttpPostEndpointAvailability',
|
|
843
|
+
request,
|
|
844
|
+
metadata || {},
|
|
845
|
+
methodDescriptor_ApiContainerService_WaitForHttpPostEndpointAvailability,
|
|
846
|
+
callback);
|
|
847
|
+
};
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
/**
|
|
851
|
+
* @param {!proto.api_container_api.WaitForHttpPostEndpointAvailabilityArgs} request The
|
|
852
|
+
* request proto
|
|
853
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
854
|
+
* call metadata
|
|
855
|
+
* @return {!Promise<!proto.google.protobuf.Empty>}
|
|
856
|
+
* Promise that resolves to the response
|
|
857
|
+
*/
|
|
858
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.waitForHttpPostEndpointAvailability =
|
|
859
|
+
function(request, metadata) {
|
|
860
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
861
|
+
'/api_container_api.ApiContainerService/WaitForHttpPostEndpointAvailability',
|
|
862
|
+
request,
|
|
863
|
+
metadata || {},
|
|
864
|
+
methodDescriptor_ApiContainerService_WaitForHttpPostEndpointAvailability);
|
|
865
|
+
};
|
|
866
|
+
|
|
867
|
+
|
|
868
|
+
/**
|
|
869
|
+
* @const
|
|
870
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
871
|
+
* !proto.api_container_api.UploadFilesArtifactArgs,
|
|
872
|
+
* !proto.api_container_api.UploadFilesArtifactResponse>}
|
|
873
|
+
*/
|
|
874
|
+
const methodDescriptor_ApiContainerService_UploadFilesArtifact = new grpc.web.MethodDescriptor(
|
|
875
|
+
'/api_container_api.ApiContainerService/UploadFilesArtifact',
|
|
876
|
+
grpc.web.MethodType.UNARY,
|
|
877
|
+
proto.api_container_api.UploadFilesArtifactArgs,
|
|
878
|
+
proto.api_container_api.UploadFilesArtifactResponse,
|
|
879
|
+
/**
|
|
880
|
+
* @param {!proto.api_container_api.UploadFilesArtifactArgs} request
|
|
881
|
+
* @return {!Uint8Array}
|
|
882
|
+
*/
|
|
883
|
+
function(request) {
|
|
884
|
+
return request.serializeBinary();
|
|
885
|
+
},
|
|
886
|
+
proto.api_container_api.UploadFilesArtifactResponse.deserializeBinary
|
|
887
|
+
);
|
|
888
|
+
|
|
889
|
+
|
|
890
|
+
/**
|
|
891
|
+
* @param {!proto.api_container_api.UploadFilesArtifactArgs} request The
|
|
892
|
+
* request proto
|
|
893
|
+
* @param {?Object<string, string>} metadata User defined
|
|
894
|
+
* call metadata
|
|
895
|
+
* @param {function(?grpc.web.RpcError, ?proto.api_container_api.UploadFilesArtifactResponse)}
|
|
896
|
+
* callback The callback function(error, response)
|
|
897
|
+
* @return {!grpc.web.ClientReadableStream<!proto.api_container_api.UploadFilesArtifactResponse>|undefined}
|
|
898
|
+
* The XHR Node Readable Stream
|
|
899
|
+
*/
|
|
900
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.uploadFilesArtifact =
|
|
901
|
+
function(request, metadata, callback) {
|
|
902
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
903
|
+
'/api_container_api.ApiContainerService/UploadFilesArtifact',
|
|
904
|
+
request,
|
|
905
|
+
metadata || {},
|
|
906
|
+
methodDescriptor_ApiContainerService_UploadFilesArtifact,
|
|
907
|
+
callback);
|
|
908
|
+
};
|
|
909
|
+
|
|
910
|
+
|
|
911
|
+
/**
|
|
912
|
+
* @param {!proto.api_container_api.UploadFilesArtifactArgs} request The
|
|
913
|
+
* request proto
|
|
914
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
915
|
+
* call metadata
|
|
916
|
+
* @return {!Promise<!proto.api_container_api.UploadFilesArtifactResponse>}
|
|
917
|
+
* Promise that resolves to the response
|
|
918
|
+
*/
|
|
919
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.uploadFilesArtifact =
|
|
920
|
+
function(request, metadata) {
|
|
921
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
922
|
+
'/api_container_api.ApiContainerService/UploadFilesArtifact',
|
|
923
|
+
request,
|
|
924
|
+
metadata || {},
|
|
925
|
+
methodDescriptor_ApiContainerService_UploadFilesArtifact);
|
|
926
|
+
};
|
|
927
|
+
|
|
928
|
+
|
|
929
|
+
/**
|
|
930
|
+
* @const
|
|
931
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
932
|
+
* !proto.api_container_api.DownloadFilesArtifactArgs,
|
|
933
|
+
* !proto.api_container_api.DownloadFilesArtifactResponse>}
|
|
934
|
+
*/
|
|
935
|
+
const methodDescriptor_ApiContainerService_DownloadFilesArtifact = new grpc.web.MethodDescriptor(
|
|
936
|
+
'/api_container_api.ApiContainerService/DownloadFilesArtifact',
|
|
937
|
+
grpc.web.MethodType.UNARY,
|
|
938
|
+
proto.api_container_api.DownloadFilesArtifactArgs,
|
|
939
|
+
proto.api_container_api.DownloadFilesArtifactResponse,
|
|
940
|
+
/**
|
|
941
|
+
* @param {!proto.api_container_api.DownloadFilesArtifactArgs} request
|
|
942
|
+
* @return {!Uint8Array}
|
|
943
|
+
*/
|
|
944
|
+
function(request) {
|
|
945
|
+
return request.serializeBinary();
|
|
946
|
+
},
|
|
947
|
+
proto.api_container_api.DownloadFilesArtifactResponse.deserializeBinary
|
|
948
|
+
);
|
|
949
|
+
|
|
950
|
+
|
|
951
|
+
/**
|
|
952
|
+
* @param {!proto.api_container_api.DownloadFilesArtifactArgs} request The
|
|
953
|
+
* request proto
|
|
954
|
+
* @param {?Object<string, string>} metadata User defined
|
|
955
|
+
* call metadata
|
|
956
|
+
* @param {function(?grpc.web.RpcError, ?proto.api_container_api.DownloadFilesArtifactResponse)}
|
|
957
|
+
* callback The callback function(error, response)
|
|
958
|
+
* @return {!grpc.web.ClientReadableStream<!proto.api_container_api.DownloadFilesArtifactResponse>|undefined}
|
|
959
|
+
* The XHR Node Readable Stream
|
|
960
|
+
*/
|
|
961
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.downloadFilesArtifact =
|
|
962
|
+
function(request, metadata, callback) {
|
|
963
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
964
|
+
'/api_container_api.ApiContainerService/DownloadFilesArtifact',
|
|
965
|
+
request,
|
|
966
|
+
metadata || {},
|
|
967
|
+
methodDescriptor_ApiContainerService_DownloadFilesArtifact,
|
|
968
|
+
callback);
|
|
969
|
+
};
|
|
970
|
+
|
|
971
|
+
|
|
972
|
+
/**
|
|
973
|
+
* @param {!proto.api_container_api.DownloadFilesArtifactArgs} request The
|
|
974
|
+
* request proto
|
|
975
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
976
|
+
* call metadata
|
|
977
|
+
* @return {!Promise<!proto.api_container_api.DownloadFilesArtifactResponse>}
|
|
978
|
+
* Promise that resolves to the response
|
|
979
|
+
*/
|
|
980
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.downloadFilesArtifact =
|
|
981
|
+
function(request, metadata) {
|
|
982
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
983
|
+
'/api_container_api.ApiContainerService/DownloadFilesArtifact',
|
|
984
|
+
request,
|
|
985
|
+
metadata || {},
|
|
986
|
+
methodDescriptor_ApiContainerService_DownloadFilesArtifact);
|
|
987
|
+
};
|
|
988
|
+
|
|
989
|
+
|
|
990
|
+
/**
|
|
991
|
+
* @const
|
|
992
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
993
|
+
* !proto.api_container_api.StoreWebFilesArtifactArgs,
|
|
994
|
+
* !proto.api_container_api.StoreWebFilesArtifactResponse>}
|
|
995
|
+
*/
|
|
996
|
+
const methodDescriptor_ApiContainerService_StoreWebFilesArtifact = new grpc.web.MethodDescriptor(
|
|
997
|
+
'/api_container_api.ApiContainerService/StoreWebFilesArtifact',
|
|
998
|
+
grpc.web.MethodType.UNARY,
|
|
999
|
+
proto.api_container_api.StoreWebFilesArtifactArgs,
|
|
1000
|
+
proto.api_container_api.StoreWebFilesArtifactResponse,
|
|
1001
|
+
/**
|
|
1002
|
+
* @param {!proto.api_container_api.StoreWebFilesArtifactArgs} request
|
|
1003
|
+
* @return {!Uint8Array}
|
|
1004
|
+
*/
|
|
1005
|
+
function(request) {
|
|
1006
|
+
return request.serializeBinary();
|
|
1007
|
+
},
|
|
1008
|
+
proto.api_container_api.StoreWebFilesArtifactResponse.deserializeBinary
|
|
1009
|
+
);
|
|
1010
|
+
|
|
1011
|
+
|
|
1012
|
+
/**
|
|
1013
|
+
* @param {!proto.api_container_api.StoreWebFilesArtifactArgs} request The
|
|
1014
|
+
* request proto
|
|
1015
|
+
* @param {?Object<string, string>} metadata User defined
|
|
1016
|
+
* call metadata
|
|
1017
|
+
* @param {function(?grpc.web.RpcError, ?proto.api_container_api.StoreWebFilesArtifactResponse)}
|
|
1018
|
+
* callback The callback function(error, response)
|
|
1019
|
+
* @return {!grpc.web.ClientReadableStream<!proto.api_container_api.StoreWebFilesArtifactResponse>|undefined}
|
|
1020
|
+
* The XHR Node Readable Stream
|
|
1021
|
+
*/
|
|
1022
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.storeWebFilesArtifact =
|
|
1023
|
+
function(request, metadata, callback) {
|
|
1024
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
1025
|
+
'/api_container_api.ApiContainerService/StoreWebFilesArtifact',
|
|
1026
|
+
request,
|
|
1027
|
+
metadata || {},
|
|
1028
|
+
methodDescriptor_ApiContainerService_StoreWebFilesArtifact,
|
|
1029
|
+
callback);
|
|
1030
|
+
};
|
|
1031
|
+
|
|
1032
|
+
|
|
1033
|
+
/**
|
|
1034
|
+
* @param {!proto.api_container_api.StoreWebFilesArtifactArgs} request The
|
|
1035
|
+
* request proto
|
|
1036
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
1037
|
+
* call metadata
|
|
1038
|
+
* @return {!Promise<!proto.api_container_api.StoreWebFilesArtifactResponse>}
|
|
1039
|
+
* Promise that resolves to the response
|
|
1040
|
+
*/
|
|
1041
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.storeWebFilesArtifact =
|
|
1042
|
+
function(request, metadata) {
|
|
1043
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
1044
|
+
'/api_container_api.ApiContainerService/StoreWebFilesArtifact',
|
|
1045
|
+
request,
|
|
1046
|
+
metadata || {},
|
|
1047
|
+
methodDescriptor_ApiContainerService_StoreWebFilesArtifact);
|
|
1048
|
+
};
|
|
1049
|
+
|
|
1050
|
+
|
|
1051
|
+
/**
|
|
1052
|
+
* @const
|
|
1053
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
1054
|
+
* !proto.api_container_api.StoreFilesArtifactFromServiceArgs,
|
|
1055
|
+
* !proto.api_container_api.StoreFilesArtifactFromServiceResponse>}
|
|
1056
|
+
*/
|
|
1057
|
+
const methodDescriptor_ApiContainerService_StoreFilesArtifactFromService = new grpc.web.MethodDescriptor(
|
|
1058
|
+
'/api_container_api.ApiContainerService/StoreFilesArtifactFromService',
|
|
1059
|
+
grpc.web.MethodType.UNARY,
|
|
1060
|
+
proto.api_container_api.StoreFilesArtifactFromServiceArgs,
|
|
1061
|
+
proto.api_container_api.StoreFilesArtifactFromServiceResponse,
|
|
1062
|
+
/**
|
|
1063
|
+
* @param {!proto.api_container_api.StoreFilesArtifactFromServiceArgs} request
|
|
1064
|
+
* @return {!Uint8Array}
|
|
1065
|
+
*/
|
|
1066
|
+
function(request) {
|
|
1067
|
+
return request.serializeBinary();
|
|
1068
|
+
},
|
|
1069
|
+
proto.api_container_api.StoreFilesArtifactFromServiceResponse.deserializeBinary
|
|
1070
|
+
);
|
|
1071
|
+
|
|
1072
|
+
|
|
1073
|
+
/**
|
|
1074
|
+
* @param {!proto.api_container_api.StoreFilesArtifactFromServiceArgs} request The
|
|
1075
|
+
* request proto
|
|
1076
|
+
* @param {?Object<string, string>} metadata User defined
|
|
1077
|
+
* call metadata
|
|
1078
|
+
* @param {function(?grpc.web.RpcError, ?proto.api_container_api.StoreFilesArtifactFromServiceResponse)}
|
|
1079
|
+
* callback The callback function(error, response)
|
|
1080
|
+
* @return {!grpc.web.ClientReadableStream<!proto.api_container_api.StoreFilesArtifactFromServiceResponse>|undefined}
|
|
1081
|
+
* The XHR Node Readable Stream
|
|
1082
|
+
*/
|
|
1083
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.storeFilesArtifactFromService =
|
|
1084
|
+
function(request, metadata, callback) {
|
|
1085
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
1086
|
+
'/api_container_api.ApiContainerService/StoreFilesArtifactFromService',
|
|
1087
|
+
request,
|
|
1088
|
+
metadata || {},
|
|
1089
|
+
methodDescriptor_ApiContainerService_StoreFilesArtifactFromService,
|
|
1090
|
+
callback);
|
|
1091
|
+
};
|
|
1092
|
+
|
|
1093
|
+
|
|
1094
|
+
/**
|
|
1095
|
+
* @param {!proto.api_container_api.StoreFilesArtifactFromServiceArgs} request The
|
|
1096
|
+
* request proto
|
|
1097
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
1098
|
+
* call metadata
|
|
1099
|
+
* @return {!Promise<!proto.api_container_api.StoreFilesArtifactFromServiceResponse>}
|
|
1100
|
+
* Promise that resolves to the response
|
|
1101
|
+
*/
|
|
1102
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.storeFilesArtifactFromService =
|
|
1103
|
+
function(request, metadata) {
|
|
1104
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
1105
|
+
'/api_container_api.ApiContainerService/StoreFilesArtifactFromService',
|
|
1106
|
+
request,
|
|
1107
|
+
metadata || {},
|
|
1108
|
+
methodDescriptor_ApiContainerService_StoreFilesArtifactFromService);
|
|
1109
|
+
};
|
|
1110
|
+
|
|
1111
|
+
|
|
1112
|
+
/**
|
|
1113
|
+
* @const
|
|
1114
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
1115
|
+
* !proto.api_container_api.RenderTemplatesToFilesArtifactArgs,
|
|
1116
|
+
* !proto.api_container_api.RenderTemplatesToFilesArtifactResponse>}
|
|
1117
|
+
*/
|
|
1118
|
+
const methodDescriptor_ApiContainerService_RenderTemplatesToFilesArtifact = new grpc.web.MethodDescriptor(
|
|
1119
|
+
'/api_container_api.ApiContainerService/RenderTemplatesToFilesArtifact',
|
|
1120
|
+
grpc.web.MethodType.UNARY,
|
|
1121
|
+
proto.api_container_api.RenderTemplatesToFilesArtifactArgs,
|
|
1122
|
+
proto.api_container_api.RenderTemplatesToFilesArtifactResponse,
|
|
1123
|
+
/**
|
|
1124
|
+
* @param {!proto.api_container_api.RenderTemplatesToFilesArtifactArgs} request
|
|
1125
|
+
* @return {!Uint8Array}
|
|
1126
|
+
*/
|
|
1127
|
+
function(request) {
|
|
1128
|
+
return request.serializeBinary();
|
|
1129
|
+
},
|
|
1130
|
+
proto.api_container_api.RenderTemplatesToFilesArtifactResponse.deserializeBinary
|
|
1131
|
+
);
|
|
1132
|
+
|
|
1133
|
+
|
|
1134
|
+
/**
|
|
1135
|
+
* @param {!proto.api_container_api.RenderTemplatesToFilesArtifactArgs} request The
|
|
1136
|
+
* request proto
|
|
1137
|
+
* @param {?Object<string, string>} metadata User defined
|
|
1138
|
+
* call metadata
|
|
1139
|
+
* @param {function(?grpc.web.RpcError, ?proto.api_container_api.RenderTemplatesToFilesArtifactResponse)}
|
|
1140
|
+
* callback The callback function(error, response)
|
|
1141
|
+
* @return {!grpc.web.ClientReadableStream<!proto.api_container_api.RenderTemplatesToFilesArtifactResponse>|undefined}
|
|
1142
|
+
* The XHR Node Readable Stream
|
|
1143
|
+
*/
|
|
1144
|
+
proto.api_container_api.ApiContainerServiceClient.prototype.renderTemplatesToFilesArtifact =
|
|
1145
|
+
function(request, metadata, callback) {
|
|
1146
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
1147
|
+
'/api_container_api.ApiContainerService/RenderTemplatesToFilesArtifact',
|
|
1148
|
+
request,
|
|
1149
|
+
metadata || {},
|
|
1150
|
+
methodDescriptor_ApiContainerService_RenderTemplatesToFilesArtifact,
|
|
1151
|
+
callback);
|
|
1152
|
+
};
|
|
1153
|
+
|
|
1154
|
+
|
|
1155
|
+
/**
|
|
1156
|
+
* @param {!proto.api_container_api.RenderTemplatesToFilesArtifactArgs} request The
|
|
1157
|
+
* request proto
|
|
1158
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
1159
|
+
* call metadata
|
|
1160
|
+
* @return {!Promise<!proto.api_container_api.RenderTemplatesToFilesArtifactResponse>}
|
|
1161
|
+
* Promise that resolves to the response
|
|
1162
|
+
*/
|
|
1163
|
+
proto.api_container_api.ApiContainerServicePromiseClient.prototype.renderTemplatesToFilesArtifact =
|
|
1164
|
+
function(request, metadata) {
|
|
1165
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
1166
|
+
'/api_container_api.ApiContainerService/RenderTemplatesToFilesArtifact',
|
|
1167
|
+
request,
|
|
1168
|
+
metadata || {},
|
|
1169
|
+
methodDescriptor_ApiContainerService_RenderTemplatesToFilesArtifact);
|
|
1170
|
+
};
|
|
1171
|
+
|
|
1172
|
+
|
|
1173
|
+
module.exports = proto.api_container_api;
|
|
1174
|
+
|