@ondewo/nlu-client-typescript 6.13.0 → 7.0.0
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/README.md +0 -0
- package/api/ondewo/nlu/agent_grpc_web_pb.d.ts +48 -0
- package/api/ondewo/nlu/agent_grpc_web_pb.js +244 -0
- package/api/ondewo/nlu/agent_pb.d.ts +196 -15
- package/api/ondewo/nlu/agent_pb.js +1627 -0
- package/api/ondewo/nlu/aiservices_pb.d.ts +0 -50
- package/api/ondewo/nlu/ccai_project_pb.d.ts +6 -93
- package/api/ondewo/nlu/ccai_project_pb.js +24 -132
- package/api/ondewo/nlu/common_pb.d.ts +140 -0
- package/api/ondewo/nlu/common_pb.js +1151 -9
- package/api/ondewo/nlu/context_pb.d.ts +8 -1
- package/api/ondewo/nlu/context_pb.js +22 -4
- package/api/ondewo/nlu/llm_evaluation_pb.d.ts +40 -5
- package/api/ondewo/nlu/llm_evaluation_pb.js +110 -20
- package/api/ondewo/nlu/operations_grpc_web_pb.d.ts +46 -0
- package/api/ondewo/nlu/operations_grpc_web_pb.js +241 -0
- package/api/ondewo/nlu/operations_pb.d.ts +429 -10
- package/api/ondewo/nlu/operations_pb.js +3413 -0
- package/api/ondewo/nlu/project_role_pb.d.ts +0 -10
- package/api/ondewo/nlu/rag_pb.d.ts +191 -520
- package/api/ondewo/nlu/rag_pb.js +1246 -1058
- package/api/ondewo/nlu/session_grpc_web_pb.d.ts +120 -0
- package/api/ondewo/nlu/session_grpc_web_pb.js +610 -0
- package/api/ondewo/nlu/session_pb.d.ts +818 -118
- package/api/ondewo/nlu/session_pb.js +6396 -3
- package/api/ondewo/nlu/user_grpc_web_pb.d.ts +59 -13
- package/api/ondewo/nlu/user_grpc_web_pb.js +300 -61
- package/api/ondewo/nlu/user_pb.d.ts +0 -87
- package/api/ondewo/nlu/user_pb.js +0 -436
- package/auth/offlineTokenProvider.d.ts +195 -0
- package/auth/offlineTokenProvider.js +372 -0
- package/package.json +11 -8
- package/public-api.d.ts +31 -31
- package/public-api.js +28 -28
- package/api/google/logging/v2/log_entry_pb.d.ts +0 -172
- package/api/google/logging/v2/log_entry_pb.js +0 -1333
|
@@ -7,6 +7,7 @@ import * as google_protobuf_field_mask_pb from 'google-protobuf/google/protobuf/
|
|
|
7
7
|
import * as google_rpc_status_pb from '../../google/rpc/status_pb'; // proto import: "google/rpc/status.proto"
|
|
8
8
|
import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb'; // proto import: "google/protobuf/timestamp.proto"
|
|
9
9
|
import * as ondewo_nlu_operation_metadata_pb from '../../ondewo/nlu/operation_metadata_pb'; // proto import: "ondewo/nlu/operation_metadata.proto"
|
|
10
|
+
import * as ondewo_nlu_common_pb from '../../ondewo/nlu/common_pb'; // proto import: "ondewo/nlu/common.proto"
|
|
10
11
|
|
|
11
12
|
|
|
12
13
|
export class Operation extends jspb.Message {
|
|
@@ -79,11 +80,6 @@ export namespace GetOperationRequest {
|
|
|
79
80
|
name: string,
|
|
80
81
|
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
81
82
|
}
|
|
82
|
-
|
|
83
|
-
export enum FieldMaskCase {
|
|
84
|
-
_FIELD_MASK_NOT_SET = 0,
|
|
85
|
-
FIELD_MASK = 2,
|
|
86
|
-
}
|
|
87
83
|
}
|
|
88
84
|
|
|
89
85
|
export class ListOperationsRequest extends jspb.Message {
|
|
@@ -126,11 +122,6 @@ export namespace ListOperationsRequest {
|
|
|
126
122
|
operationFilter?: OperationFilter.AsObject,
|
|
127
123
|
fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
|
|
128
124
|
}
|
|
129
|
-
|
|
130
|
-
export enum FieldMaskCase {
|
|
131
|
-
_FIELD_MASK_NOT_SET = 0,
|
|
132
|
-
FIELD_MASK = 6,
|
|
133
|
-
}
|
|
134
125
|
}
|
|
135
126
|
|
|
136
127
|
export class OperationFilter extends jspb.Message {
|
|
@@ -257,3 +248,431 @@ export namespace DeleteOperationRequest {
|
|
|
257
248
|
}
|
|
258
249
|
}
|
|
259
250
|
|
|
251
|
+
export class StreamRemoteOperationContainerLogsRequest extends jspb.Message {
|
|
252
|
+
getName(): string;
|
|
253
|
+
setName(value: string): StreamRemoteOperationContainerLogsRequest;
|
|
254
|
+
|
|
255
|
+
getMinLogLevel(): ondewo_nlu_common_pb.LogSeverity;
|
|
256
|
+
setMinLogLevel(value: ondewo_nlu_common_pb.LogSeverity): StreamRemoteOperationContainerLogsRequest;
|
|
257
|
+
|
|
258
|
+
getTailLines(): number;
|
|
259
|
+
setTailLines(value: number): StreamRemoteOperationContainerLogsRequest;
|
|
260
|
+
|
|
261
|
+
getContainerId(): string;
|
|
262
|
+
setContainerId(value: string): StreamRemoteOperationContainerLogsRequest;
|
|
263
|
+
|
|
264
|
+
serializeBinary(): Uint8Array;
|
|
265
|
+
toObject(includeInstance?: boolean): StreamRemoteOperationContainerLogsRequest.AsObject;
|
|
266
|
+
static toObject(includeInstance: boolean, msg: StreamRemoteOperationContainerLogsRequest): StreamRemoteOperationContainerLogsRequest.AsObject;
|
|
267
|
+
static serializeBinaryToWriter(message: StreamRemoteOperationContainerLogsRequest, writer: jspb.BinaryWriter): void;
|
|
268
|
+
static deserializeBinary(bytes: Uint8Array): StreamRemoteOperationContainerLogsRequest;
|
|
269
|
+
static deserializeBinaryFromReader(message: StreamRemoteOperationContainerLogsRequest, reader: jspb.BinaryReader): StreamRemoteOperationContainerLogsRequest;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
export namespace StreamRemoteOperationContainerLogsRequest {
|
|
273
|
+
export type AsObject = {
|
|
274
|
+
name: string,
|
|
275
|
+
minLogLevel: ondewo_nlu_common_pb.LogSeverity,
|
|
276
|
+
tailLines: number,
|
|
277
|
+
containerId: string,
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
export class GetRemoteOperationContainerLogsRequest extends jspb.Message {
|
|
282
|
+
getName(): string;
|
|
283
|
+
setName(value: string): GetRemoteOperationContainerLogsRequest;
|
|
284
|
+
|
|
285
|
+
getMinLogLevel(): ondewo_nlu_common_pb.LogSeverity;
|
|
286
|
+
setMinLogLevel(value: ondewo_nlu_common_pb.LogSeverity): GetRemoteOperationContainerLogsRequest;
|
|
287
|
+
|
|
288
|
+
getStartTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
289
|
+
setStartTime(value?: google_protobuf_timestamp_pb.Timestamp): GetRemoteOperationContainerLogsRequest;
|
|
290
|
+
hasStartTime(): boolean;
|
|
291
|
+
clearStartTime(): GetRemoteOperationContainerLogsRequest;
|
|
292
|
+
|
|
293
|
+
getEndTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
294
|
+
setEndTime(value?: google_protobuf_timestamp_pb.Timestamp): GetRemoteOperationContainerLogsRequest;
|
|
295
|
+
hasEndTime(): boolean;
|
|
296
|
+
clearEndTime(): GetRemoteOperationContainerLogsRequest;
|
|
297
|
+
|
|
298
|
+
getMaxLines(): number;
|
|
299
|
+
setMaxLines(value: number): GetRemoteOperationContainerLogsRequest;
|
|
300
|
+
|
|
301
|
+
getRegex(): string;
|
|
302
|
+
setRegex(value: string): GetRemoteOperationContainerLogsRequest;
|
|
303
|
+
|
|
304
|
+
getContainerId(): string;
|
|
305
|
+
setContainerId(value: string): GetRemoteOperationContainerLogsRequest;
|
|
306
|
+
|
|
307
|
+
getBeforeSeq(): number;
|
|
308
|
+
setBeforeSeq(value: number): GetRemoteOperationContainerLogsRequest;
|
|
309
|
+
|
|
310
|
+
getAfterSeq(): number;
|
|
311
|
+
setAfterSeq(value: number): GetRemoteOperationContainerLogsRequest;
|
|
312
|
+
|
|
313
|
+
serializeBinary(): Uint8Array;
|
|
314
|
+
toObject(includeInstance?: boolean): GetRemoteOperationContainerLogsRequest.AsObject;
|
|
315
|
+
static toObject(includeInstance: boolean, msg: GetRemoteOperationContainerLogsRequest): GetRemoteOperationContainerLogsRequest.AsObject;
|
|
316
|
+
static serializeBinaryToWriter(message: GetRemoteOperationContainerLogsRequest, writer: jspb.BinaryWriter): void;
|
|
317
|
+
static deserializeBinary(bytes: Uint8Array): GetRemoteOperationContainerLogsRequest;
|
|
318
|
+
static deserializeBinaryFromReader(message: GetRemoteOperationContainerLogsRequest, reader: jspb.BinaryReader): GetRemoteOperationContainerLogsRequest;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
export namespace GetRemoteOperationContainerLogsRequest {
|
|
322
|
+
export type AsObject = {
|
|
323
|
+
name: string,
|
|
324
|
+
minLogLevel: ondewo_nlu_common_pb.LogSeverity,
|
|
325
|
+
startTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
326
|
+
endTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
327
|
+
maxLines: number,
|
|
328
|
+
regex: string,
|
|
329
|
+
containerId: string,
|
|
330
|
+
beforeSeq: number,
|
|
331
|
+
afterSeq: number,
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
export class GetRemoteOperationContainerLogsResponse extends jspb.Message {
|
|
336
|
+
getLogLinesList(): Array<RemoteOperationContainerLogLine>;
|
|
337
|
+
setLogLinesList(value: Array<RemoteOperationContainerLogLine>): GetRemoteOperationContainerLogsResponse;
|
|
338
|
+
clearLogLinesList(): GetRemoteOperationContainerLogsResponse;
|
|
339
|
+
addLogLines(value?: RemoteOperationContainerLogLine, index?: number): RemoteOperationContainerLogLine;
|
|
340
|
+
|
|
341
|
+
getTruncated(): boolean;
|
|
342
|
+
setTruncated(value: boolean): GetRemoteOperationContainerLogsResponse;
|
|
343
|
+
|
|
344
|
+
getMinAvailableSeq(): number;
|
|
345
|
+
setMinAvailableSeq(value: number): GetRemoteOperationContainerLogsResponse;
|
|
346
|
+
|
|
347
|
+
getMaxAvailableSeq(): number;
|
|
348
|
+
setMaxAvailableSeq(value: number): GetRemoteOperationContainerLogsResponse;
|
|
349
|
+
|
|
350
|
+
getHasMoreOlder(): boolean;
|
|
351
|
+
setHasMoreOlder(value: boolean): GetRemoteOperationContainerLogsResponse;
|
|
352
|
+
|
|
353
|
+
serializeBinary(): Uint8Array;
|
|
354
|
+
toObject(includeInstance?: boolean): GetRemoteOperationContainerLogsResponse.AsObject;
|
|
355
|
+
static toObject(includeInstance: boolean, msg: GetRemoteOperationContainerLogsResponse): GetRemoteOperationContainerLogsResponse.AsObject;
|
|
356
|
+
static serializeBinaryToWriter(message: GetRemoteOperationContainerLogsResponse, writer: jspb.BinaryWriter): void;
|
|
357
|
+
static deserializeBinary(bytes: Uint8Array): GetRemoteOperationContainerLogsResponse;
|
|
358
|
+
static deserializeBinaryFromReader(message: GetRemoteOperationContainerLogsResponse, reader: jspb.BinaryReader): GetRemoteOperationContainerLogsResponse;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
export namespace GetRemoteOperationContainerLogsResponse {
|
|
362
|
+
export type AsObject = {
|
|
363
|
+
logLinesList: Array<RemoteOperationContainerLogLine.AsObject>,
|
|
364
|
+
truncated: boolean,
|
|
365
|
+
minAvailableSeq: number,
|
|
366
|
+
maxAvailableSeq: number,
|
|
367
|
+
hasMoreOlder: boolean,
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
export class RemoteOperationContainerLogLine extends jspb.Message {
|
|
372
|
+
getTimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
373
|
+
setTimestamp(value?: google_protobuf_timestamp_pb.Timestamp): RemoteOperationContainerLogLine;
|
|
374
|
+
hasTimestamp(): boolean;
|
|
375
|
+
clearTimestamp(): RemoteOperationContainerLogLine;
|
|
376
|
+
|
|
377
|
+
getLevel(): ondewo_nlu_common_pb.LogSeverity;
|
|
378
|
+
setLevel(value: ondewo_nlu_common_pb.LogSeverity): RemoteOperationContainerLogLine;
|
|
379
|
+
|
|
380
|
+
getMessage(): string;
|
|
381
|
+
setMessage(value: string): RemoteOperationContainerLogLine;
|
|
382
|
+
|
|
383
|
+
getContainerId(): string;
|
|
384
|
+
setContainerId(value: string): RemoteOperationContainerLogLine;
|
|
385
|
+
|
|
386
|
+
getContainerName(): string;
|
|
387
|
+
setContainerName(value: string): RemoteOperationContainerLogLine;
|
|
388
|
+
|
|
389
|
+
getSeq(): number;
|
|
390
|
+
setSeq(value: number): RemoteOperationContainerLogLine;
|
|
391
|
+
|
|
392
|
+
serializeBinary(): Uint8Array;
|
|
393
|
+
toObject(includeInstance?: boolean): RemoteOperationContainerLogLine.AsObject;
|
|
394
|
+
static toObject(includeInstance: boolean, msg: RemoteOperationContainerLogLine): RemoteOperationContainerLogLine.AsObject;
|
|
395
|
+
static serializeBinaryToWriter(message: RemoteOperationContainerLogLine, writer: jspb.BinaryWriter): void;
|
|
396
|
+
static deserializeBinary(bytes: Uint8Array): RemoteOperationContainerLogLine;
|
|
397
|
+
static deserializeBinaryFromReader(message: RemoteOperationContainerLogLine, reader: jspb.BinaryReader): RemoteOperationContainerLogLine;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
export namespace RemoteOperationContainerLogLine {
|
|
401
|
+
export type AsObject = {
|
|
402
|
+
timestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
403
|
+
level: ondewo_nlu_common_pb.LogSeverity,
|
|
404
|
+
message: string,
|
|
405
|
+
containerId: string,
|
|
406
|
+
containerName: string,
|
|
407
|
+
seq: number,
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
export class GetRemoteOperationContainerStatusRequest extends jspb.Message {
|
|
412
|
+
getName(): string;
|
|
413
|
+
setName(value: string): GetRemoteOperationContainerStatusRequest;
|
|
414
|
+
|
|
415
|
+
getContainerId(): string;
|
|
416
|
+
setContainerId(value: string): GetRemoteOperationContainerStatusRequest;
|
|
417
|
+
|
|
418
|
+
serializeBinary(): Uint8Array;
|
|
419
|
+
toObject(includeInstance?: boolean): GetRemoteOperationContainerStatusRequest.AsObject;
|
|
420
|
+
static toObject(includeInstance: boolean, msg: GetRemoteOperationContainerStatusRequest): GetRemoteOperationContainerStatusRequest.AsObject;
|
|
421
|
+
static serializeBinaryToWriter(message: GetRemoteOperationContainerStatusRequest, writer: jspb.BinaryWriter): void;
|
|
422
|
+
static deserializeBinary(bytes: Uint8Array): GetRemoteOperationContainerStatusRequest;
|
|
423
|
+
static deserializeBinaryFromReader(message: GetRemoteOperationContainerStatusRequest, reader: jspb.BinaryReader): GetRemoteOperationContainerStatusRequest;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
export namespace GetRemoteOperationContainerStatusRequest {
|
|
427
|
+
export type AsObject = {
|
|
428
|
+
name: string,
|
|
429
|
+
containerId: string,
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
export class RemoteOperationContainerStatus extends jspb.Message {
|
|
434
|
+
getName(): string;
|
|
435
|
+
setName(value: string): RemoteOperationContainerStatus;
|
|
436
|
+
|
|
437
|
+
getLifecycleState(): RemoteOperationContainerLifecycleState;
|
|
438
|
+
setLifecycleState(value: RemoteOperationContainerLifecycleState): RemoteOperationContainerStatus;
|
|
439
|
+
|
|
440
|
+
getHostName(): string;
|
|
441
|
+
setHostName(value: string): RemoteOperationContainerStatus;
|
|
442
|
+
|
|
443
|
+
getContainerName(): string;
|
|
444
|
+
setContainerName(value: string): RemoteOperationContainerStatus;
|
|
445
|
+
|
|
446
|
+
getContainerId(): string;
|
|
447
|
+
setContainerId(value: string): RemoteOperationContainerStatus;
|
|
448
|
+
|
|
449
|
+
getExitCode(): number;
|
|
450
|
+
setExitCode(value: number): RemoteOperationContainerStatus;
|
|
451
|
+
|
|
452
|
+
getOomKilled(): boolean;
|
|
453
|
+
setOomKilled(value: boolean): RemoteOperationContainerStatus;
|
|
454
|
+
|
|
455
|
+
getHealthStatus(): string;
|
|
456
|
+
setHealthStatus(value: string): RemoteOperationContainerStatus;
|
|
457
|
+
|
|
458
|
+
getStartedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
459
|
+
setStartedAt(value?: google_protobuf_timestamp_pb.Timestamp): RemoteOperationContainerStatus;
|
|
460
|
+
hasStartedAt(): boolean;
|
|
461
|
+
clearStartedAt(): RemoteOperationContainerStatus;
|
|
462
|
+
|
|
463
|
+
getFinishedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
464
|
+
setFinishedAt(value?: google_protobuf_timestamp_pb.Timestamp): RemoteOperationContainerStatus;
|
|
465
|
+
hasFinishedAt(): boolean;
|
|
466
|
+
clearFinishedAt(): RemoteOperationContainerStatus;
|
|
467
|
+
|
|
468
|
+
getObservedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
469
|
+
setObservedAt(value?: google_protobuf_timestamp_pb.Timestamp): RemoteOperationContainerStatus;
|
|
470
|
+
hasObservedAt(): boolean;
|
|
471
|
+
clearObservedAt(): RemoteOperationContainerStatus;
|
|
472
|
+
|
|
473
|
+
getEnvironmentVariablesMap(): jspb.Map<string, string>;
|
|
474
|
+
clearEnvironmentVariablesMap(): RemoteOperationContainerStatus;
|
|
475
|
+
|
|
476
|
+
getCommandList(): Array<string>;
|
|
477
|
+
setCommandList(value: Array<string>): RemoteOperationContainerStatus;
|
|
478
|
+
clearCommandList(): RemoteOperationContainerStatus;
|
|
479
|
+
addCommand(value: string, index?: number): RemoteOperationContainerStatus;
|
|
480
|
+
|
|
481
|
+
getMemoryLimitBytes(): number;
|
|
482
|
+
setMemoryLimitBytes(value: number): RemoteOperationContainerStatus;
|
|
483
|
+
|
|
484
|
+
getNanoCpus(): number;
|
|
485
|
+
setNanoCpus(value: number): RemoteOperationContainerStatus;
|
|
486
|
+
|
|
487
|
+
getCpusetCpus(): string;
|
|
488
|
+
setCpusetCpus(value: string): RemoteOperationContainerStatus;
|
|
489
|
+
|
|
490
|
+
getCpuQuota(): number;
|
|
491
|
+
setCpuQuota(value: number): RemoteOperationContainerStatus;
|
|
492
|
+
|
|
493
|
+
getCpuPeriod(): number;
|
|
494
|
+
setCpuPeriod(value: number): RemoteOperationContainerStatus;
|
|
495
|
+
|
|
496
|
+
getImage(): string;
|
|
497
|
+
setImage(value: string): RemoteOperationContainerStatus;
|
|
498
|
+
|
|
499
|
+
serializeBinary(): Uint8Array;
|
|
500
|
+
toObject(includeInstance?: boolean): RemoteOperationContainerStatus.AsObject;
|
|
501
|
+
static toObject(includeInstance: boolean, msg: RemoteOperationContainerStatus): RemoteOperationContainerStatus.AsObject;
|
|
502
|
+
static serializeBinaryToWriter(message: RemoteOperationContainerStatus, writer: jspb.BinaryWriter): void;
|
|
503
|
+
static deserializeBinary(bytes: Uint8Array): RemoteOperationContainerStatus;
|
|
504
|
+
static deserializeBinaryFromReader(message: RemoteOperationContainerStatus, reader: jspb.BinaryReader): RemoteOperationContainerStatus;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
export namespace RemoteOperationContainerStatus {
|
|
508
|
+
export type AsObject = {
|
|
509
|
+
name: string,
|
|
510
|
+
lifecycleState: RemoteOperationContainerLifecycleState,
|
|
511
|
+
hostName: string,
|
|
512
|
+
containerName: string,
|
|
513
|
+
containerId: string,
|
|
514
|
+
exitCode: number,
|
|
515
|
+
oomKilled: boolean,
|
|
516
|
+
healthStatus: string,
|
|
517
|
+
startedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
518
|
+
finishedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
519
|
+
observedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
520
|
+
environmentVariablesMap: Array<[string, string]>,
|
|
521
|
+
commandList: Array<string>,
|
|
522
|
+
memoryLimitBytes: number,
|
|
523
|
+
nanoCpus: number,
|
|
524
|
+
cpusetCpus: string,
|
|
525
|
+
cpuQuota: number,
|
|
526
|
+
cpuPeriod: number,
|
|
527
|
+
image: string,
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
export class RemoteOperationContainer extends jspb.Message {
|
|
532
|
+
getContainerId(): string;
|
|
533
|
+
setContainerId(value: string): RemoteOperationContainer;
|
|
534
|
+
|
|
535
|
+
getContainerName(): string;
|
|
536
|
+
setContainerName(value: string): RemoteOperationContainer;
|
|
537
|
+
|
|
538
|
+
getHostName(): string;
|
|
539
|
+
setHostName(value: string): RemoteOperationContainer;
|
|
540
|
+
|
|
541
|
+
getLifecycleState(): RemoteOperationContainerLifecycleState;
|
|
542
|
+
setLifecycleState(value: RemoteOperationContainerLifecycleState): RemoteOperationContainer;
|
|
543
|
+
|
|
544
|
+
getOperationName(): string;
|
|
545
|
+
setOperationName(value: string): RemoteOperationContainer;
|
|
546
|
+
|
|
547
|
+
getImage(): string;
|
|
548
|
+
setImage(value: string): RemoteOperationContainer;
|
|
549
|
+
|
|
550
|
+
getPhase(): string;
|
|
551
|
+
setPhase(value: string): RemoteOperationContainer;
|
|
552
|
+
|
|
553
|
+
getExitCode(): number;
|
|
554
|
+
setExitCode(value: number): RemoteOperationContainer;
|
|
555
|
+
|
|
556
|
+
getOomKilled(): boolean;
|
|
557
|
+
setOomKilled(value: boolean): RemoteOperationContainer;
|
|
558
|
+
|
|
559
|
+
getStartedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
560
|
+
setStartedAt(value?: google_protobuf_timestamp_pb.Timestamp): RemoteOperationContainer;
|
|
561
|
+
hasStartedAt(): boolean;
|
|
562
|
+
clearStartedAt(): RemoteOperationContainer;
|
|
563
|
+
|
|
564
|
+
getFinishedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
565
|
+
setFinishedAt(value?: google_protobuf_timestamp_pb.Timestamp): RemoteOperationContainer;
|
|
566
|
+
hasFinishedAt(): boolean;
|
|
567
|
+
clearFinishedAt(): RemoteOperationContainer;
|
|
568
|
+
|
|
569
|
+
getLogsAvailable(): boolean;
|
|
570
|
+
setLogsAvailable(value: boolean): RemoteOperationContainer;
|
|
571
|
+
|
|
572
|
+
getEnvironmentVariablesMap(): jspb.Map<string, string>;
|
|
573
|
+
clearEnvironmentVariablesMap(): RemoteOperationContainer;
|
|
574
|
+
|
|
575
|
+
getCommandList(): Array<string>;
|
|
576
|
+
setCommandList(value: Array<string>): RemoteOperationContainer;
|
|
577
|
+
clearCommandList(): RemoteOperationContainer;
|
|
578
|
+
addCommand(value: string, index?: number): RemoteOperationContainer;
|
|
579
|
+
|
|
580
|
+
getMemoryLimitBytes(): number;
|
|
581
|
+
setMemoryLimitBytes(value: number): RemoteOperationContainer;
|
|
582
|
+
|
|
583
|
+
getNanoCpus(): number;
|
|
584
|
+
setNanoCpus(value: number): RemoteOperationContainer;
|
|
585
|
+
|
|
586
|
+
getCpusetCpus(): string;
|
|
587
|
+
setCpusetCpus(value: string): RemoteOperationContainer;
|
|
588
|
+
|
|
589
|
+
getCpuQuota(): number;
|
|
590
|
+
setCpuQuota(value: number): RemoteOperationContainer;
|
|
591
|
+
|
|
592
|
+
getCpuPeriod(): number;
|
|
593
|
+
setCpuPeriod(value: number): RemoteOperationContainer;
|
|
594
|
+
|
|
595
|
+
serializeBinary(): Uint8Array;
|
|
596
|
+
toObject(includeInstance?: boolean): RemoteOperationContainer.AsObject;
|
|
597
|
+
static toObject(includeInstance: boolean, msg: RemoteOperationContainer): RemoteOperationContainer.AsObject;
|
|
598
|
+
static serializeBinaryToWriter(message: RemoteOperationContainer, writer: jspb.BinaryWriter): void;
|
|
599
|
+
static deserializeBinary(bytes: Uint8Array): RemoteOperationContainer;
|
|
600
|
+
static deserializeBinaryFromReader(message: RemoteOperationContainer, reader: jspb.BinaryReader): RemoteOperationContainer;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
export namespace RemoteOperationContainer {
|
|
604
|
+
export type AsObject = {
|
|
605
|
+
containerId: string,
|
|
606
|
+
containerName: string,
|
|
607
|
+
hostName: string,
|
|
608
|
+
lifecycleState: RemoteOperationContainerLifecycleState,
|
|
609
|
+
operationName: string,
|
|
610
|
+
image: string,
|
|
611
|
+
phase: string,
|
|
612
|
+
exitCode: number,
|
|
613
|
+
oomKilled: boolean,
|
|
614
|
+
startedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
615
|
+
finishedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
616
|
+
logsAvailable: boolean,
|
|
617
|
+
environmentVariablesMap: Array<[string, string]>,
|
|
618
|
+
commandList: Array<string>,
|
|
619
|
+
memoryLimitBytes: number,
|
|
620
|
+
nanoCpus: number,
|
|
621
|
+
cpusetCpus: string,
|
|
622
|
+
cpuQuota: number,
|
|
623
|
+
cpuPeriod: number,
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
export class ListRemoteOperationContainersRequest extends jspb.Message {
|
|
628
|
+
getName(): string;
|
|
629
|
+
setName(value: string): ListRemoteOperationContainersRequest;
|
|
630
|
+
|
|
631
|
+
getIncludeSubOperations(): boolean;
|
|
632
|
+
setIncludeSubOperations(value: boolean): ListRemoteOperationContainersRequest;
|
|
633
|
+
|
|
634
|
+
serializeBinary(): Uint8Array;
|
|
635
|
+
toObject(includeInstance?: boolean): ListRemoteOperationContainersRequest.AsObject;
|
|
636
|
+
static toObject(includeInstance: boolean, msg: ListRemoteOperationContainersRequest): ListRemoteOperationContainersRequest.AsObject;
|
|
637
|
+
static serializeBinaryToWriter(message: ListRemoteOperationContainersRequest, writer: jspb.BinaryWriter): void;
|
|
638
|
+
static deserializeBinary(bytes: Uint8Array): ListRemoteOperationContainersRequest;
|
|
639
|
+
static deserializeBinaryFromReader(message: ListRemoteOperationContainersRequest, reader: jspb.BinaryReader): ListRemoteOperationContainersRequest;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
export namespace ListRemoteOperationContainersRequest {
|
|
643
|
+
export type AsObject = {
|
|
644
|
+
name: string,
|
|
645
|
+
includeSubOperations: boolean,
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
export class ListRemoteOperationContainersResponse extends jspb.Message {
|
|
650
|
+
getContainersList(): Array<RemoteOperationContainer>;
|
|
651
|
+
setContainersList(value: Array<RemoteOperationContainer>): ListRemoteOperationContainersResponse;
|
|
652
|
+
clearContainersList(): ListRemoteOperationContainersResponse;
|
|
653
|
+
addContainers(value?: RemoteOperationContainer, index?: number): RemoteOperationContainer;
|
|
654
|
+
|
|
655
|
+
serializeBinary(): Uint8Array;
|
|
656
|
+
toObject(includeInstance?: boolean): ListRemoteOperationContainersResponse.AsObject;
|
|
657
|
+
static toObject(includeInstance: boolean, msg: ListRemoteOperationContainersResponse): ListRemoteOperationContainersResponse.AsObject;
|
|
658
|
+
static serializeBinaryToWriter(message: ListRemoteOperationContainersResponse, writer: jspb.BinaryWriter): void;
|
|
659
|
+
static deserializeBinary(bytes: Uint8Array): ListRemoteOperationContainersResponse;
|
|
660
|
+
static deserializeBinaryFromReader(message: ListRemoteOperationContainersResponse, reader: jspb.BinaryReader): ListRemoteOperationContainersResponse;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
export namespace ListRemoteOperationContainersResponse {
|
|
664
|
+
export type AsObject = {
|
|
665
|
+
containersList: Array<RemoteOperationContainer.AsObject>,
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
export enum RemoteOperationContainerLifecycleState {
|
|
670
|
+
REMOTE_OPERATION_CONTAINER_LIFECYCLE_STATE_UNSPECIFIED = 0,
|
|
671
|
+
REMOTE_OPERATION_CONTAINER_LIFECYCLE_STATE_NOT_FOUND = 1,
|
|
672
|
+
REMOTE_OPERATION_CONTAINER_LIFECYCLE_STATE_CREATED = 2,
|
|
673
|
+
REMOTE_OPERATION_CONTAINER_LIFECYCLE_STATE_RUNNING = 3,
|
|
674
|
+
REMOTE_OPERATION_CONTAINER_LIFECYCLE_STATE_PAUSED = 4,
|
|
675
|
+
REMOTE_OPERATION_CONTAINER_LIFECYCLE_STATE_RESTARTING = 5,
|
|
676
|
+
REMOTE_OPERATION_CONTAINER_LIFECYCLE_STATE_EXITED = 6,
|
|
677
|
+
REMOTE_OPERATION_CONTAINER_LIFECYCLE_STATE_DEAD = 7,
|
|
678
|
+
}
|