@gitpod/supervisor-api-grpc 0.1.5-se-workspace-id.35 → 0.1.5-se-init.1
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/lib/control_grpc_pb.d.ts +7 -6
- package/lib/control_pb.d.ts +2 -6
- package/lib/control_pb.js +32 -42
- package/lib/info_grpc_pb.d.ts +7 -6
- package/lib/info_pb.d.ts +61 -29
- package/lib/info_pb.js +476 -43
- package/lib/notification_grpc_pb.d.ts +73 -0
- package/lib/notification_grpc_pb.js +121 -0
- package/lib/notification_pb.d.ts +148 -0
- package/lib/notification_pb.js +1076 -0
- package/lib/port_grpc_pb.d.ts +108 -0
- package/lib/port_grpc_pb.js +187 -0
- package/lib/port_pb.d.ts +232 -0
- package/lib/port_pb.js +1672 -0
- package/lib/status_grpc_pb.d.ts +23 -21
- package/lib/status_grpc_pb.js +1 -0
- package/lib/status_pb.d.ts +105 -51
- package/lib/status_pb.js +887 -213
- package/lib/terminal_grpc_pb.d.ts +86 -34
- package/lib/terminal_grpc_pb.js +127 -25
- package/lib/terminal_pb.d.ts +263 -134
- package/lib/terminal_pb.js +2257 -893
- package/lib/token_grpc_pb.d.ts +16 -15
- package/lib/token_pb.d.ts +31 -50
- package/lib/token_pb.js +262 -111
- package/package.json +8 -7
- package/pkg-yarn.lock +3 -3
package/lib/status_grpc_pb.d.ts
CHANGED
|
@@ -2,9 +2,11 @@
|
|
|
2
2
|
// file: status.proto
|
|
3
3
|
|
|
4
4
|
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
5
6
|
|
|
6
|
-
import * as grpc from "grpc";
|
|
7
|
+
import * as grpc from "@grpc/grpc-js";
|
|
7
8
|
import * as status_pb from "./status_pb";
|
|
9
|
+
import * as port_pb from "./port_pb";
|
|
8
10
|
|
|
9
11
|
interface IStatusServiceService extends grpc.ServiceDefinition<grpc.UntypedServiceImplementation> {
|
|
10
12
|
supervisorStatus: IStatusServiceService_ISupervisorStatus;
|
|
@@ -16,54 +18,54 @@ interface IStatusServiceService extends grpc.ServiceDefinition<grpc.UntypedServi
|
|
|
16
18
|
}
|
|
17
19
|
|
|
18
20
|
interface IStatusServiceService_ISupervisorStatus extends grpc.MethodDefinition<status_pb.SupervisorStatusRequest, status_pb.SupervisorStatusResponse> {
|
|
19
|
-
path:
|
|
20
|
-
requestStream:
|
|
21
|
-
responseStream:
|
|
21
|
+
path: "/supervisor.StatusService/SupervisorStatus";
|
|
22
|
+
requestStream: false;
|
|
23
|
+
responseStream: false;
|
|
22
24
|
requestSerialize: grpc.serialize<status_pb.SupervisorStatusRequest>;
|
|
23
25
|
requestDeserialize: grpc.deserialize<status_pb.SupervisorStatusRequest>;
|
|
24
26
|
responseSerialize: grpc.serialize<status_pb.SupervisorStatusResponse>;
|
|
25
27
|
responseDeserialize: grpc.deserialize<status_pb.SupervisorStatusResponse>;
|
|
26
28
|
}
|
|
27
29
|
interface IStatusServiceService_IIDEStatus extends grpc.MethodDefinition<status_pb.IDEStatusRequest, status_pb.IDEStatusResponse> {
|
|
28
|
-
path:
|
|
29
|
-
requestStream:
|
|
30
|
-
responseStream:
|
|
30
|
+
path: "/supervisor.StatusService/IDEStatus";
|
|
31
|
+
requestStream: false;
|
|
32
|
+
responseStream: false;
|
|
31
33
|
requestSerialize: grpc.serialize<status_pb.IDEStatusRequest>;
|
|
32
34
|
requestDeserialize: grpc.deserialize<status_pb.IDEStatusRequest>;
|
|
33
35
|
responseSerialize: grpc.serialize<status_pb.IDEStatusResponse>;
|
|
34
36
|
responseDeserialize: grpc.deserialize<status_pb.IDEStatusResponse>;
|
|
35
37
|
}
|
|
36
38
|
interface IStatusServiceService_IContentStatus extends grpc.MethodDefinition<status_pb.ContentStatusRequest, status_pb.ContentStatusResponse> {
|
|
37
|
-
path:
|
|
38
|
-
requestStream:
|
|
39
|
-
responseStream:
|
|
39
|
+
path: "/supervisor.StatusService/ContentStatus";
|
|
40
|
+
requestStream: false;
|
|
41
|
+
responseStream: false;
|
|
40
42
|
requestSerialize: grpc.serialize<status_pb.ContentStatusRequest>;
|
|
41
43
|
requestDeserialize: grpc.deserialize<status_pb.ContentStatusRequest>;
|
|
42
44
|
responseSerialize: grpc.serialize<status_pb.ContentStatusResponse>;
|
|
43
45
|
responseDeserialize: grpc.deserialize<status_pb.ContentStatusResponse>;
|
|
44
46
|
}
|
|
45
47
|
interface IStatusServiceService_IBackupStatus extends grpc.MethodDefinition<status_pb.BackupStatusRequest, status_pb.BackupStatusResponse> {
|
|
46
|
-
path:
|
|
47
|
-
requestStream:
|
|
48
|
-
responseStream:
|
|
48
|
+
path: "/supervisor.StatusService/BackupStatus";
|
|
49
|
+
requestStream: false;
|
|
50
|
+
responseStream: false;
|
|
49
51
|
requestSerialize: grpc.serialize<status_pb.BackupStatusRequest>;
|
|
50
52
|
requestDeserialize: grpc.deserialize<status_pb.BackupStatusRequest>;
|
|
51
53
|
responseSerialize: grpc.serialize<status_pb.BackupStatusResponse>;
|
|
52
54
|
responseDeserialize: grpc.deserialize<status_pb.BackupStatusResponse>;
|
|
53
55
|
}
|
|
54
56
|
interface IStatusServiceService_IPortsStatus extends grpc.MethodDefinition<status_pb.PortsStatusRequest, status_pb.PortsStatusResponse> {
|
|
55
|
-
path:
|
|
56
|
-
requestStream:
|
|
57
|
-
responseStream:
|
|
57
|
+
path: "/supervisor.StatusService/PortsStatus";
|
|
58
|
+
requestStream: false;
|
|
59
|
+
responseStream: true;
|
|
58
60
|
requestSerialize: grpc.serialize<status_pb.PortsStatusRequest>;
|
|
59
61
|
requestDeserialize: grpc.deserialize<status_pb.PortsStatusRequest>;
|
|
60
62
|
responseSerialize: grpc.serialize<status_pb.PortsStatusResponse>;
|
|
61
63
|
responseDeserialize: grpc.deserialize<status_pb.PortsStatusResponse>;
|
|
62
64
|
}
|
|
63
65
|
interface IStatusServiceService_ITasksStatus extends grpc.MethodDefinition<status_pb.TasksStatusRequest, status_pb.TasksStatusResponse> {
|
|
64
|
-
path:
|
|
65
|
-
requestStream:
|
|
66
|
-
responseStream:
|
|
66
|
+
path: "/supervisor.StatusService/TasksStatus";
|
|
67
|
+
requestStream: false;
|
|
68
|
+
responseStream: true;
|
|
67
69
|
requestSerialize: grpc.serialize<status_pb.TasksStatusRequest>;
|
|
68
70
|
requestDeserialize: grpc.deserialize<status_pb.TasksStatusRequest>;
|
|
69
71
|
responseSerialize: grpc.serialize<status_pb.TasksStatusResponse>;
|
|
@@ -72,7 +74,7 @@ interface IStatusServiceService_ITasksStatus extends grpc.MethodDefinition<statu
|
|
|
72
74
|
|
|
73
75
|
export const StatusServiceService: IStatusServiceService;
|
|
74
76
|
|
|
75
|
-
export interface IStatusServiceServer {
|
|
77
|
+
export interface IStatusServiceServer extends grpc.UntypedServiceImplementation {
|
|
76
78
|
supervisorStatus: grpc.handleUnaryCall<status_pb.SupervisorStatusRequest, status_pb.SupervisorStatusResponse>;
|
|
77
79
|
iDEStatus: grpc.handleUnaryCall<status_pb.IDEStatusRequest, status_pb.IDEStatusResponse>;
|
|
78
80
|
contentStatus: grpc.handleUnaryCall<status_pb.ContentStatusRequest, status_pb.ContentStatusResponse>;
|
|
@@ -101,7 +103,7 @@ export interface IStatusServiceClient {
|
|
|
101
103
|
}
|
|
102
104
|
|
|
103
105
|
export class StatusServiceClient extends grpc.Client implements IStatusServiceClient {
|
|
104
|
-
constructor(address: string, credentials: grpc.ChannelCredentials, options?:
|
|
106
|
+
constructor(address: string, credentials: grpc.ChannelCredentials, options?: Partial<grpc.ClientOptions>);
|
|
105
107
|
public supervisorStatus(request: status_pb.SupervisorStatusRequest, callback: (error: grpc.ServiceError | null, response: status_pb.SupervisorStatusResponse) => void): grpc.ClientUnaryCall;
|
|
106
108
|
public supervisorStatus(request: status_pb.SupervisorStatusRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: status_pb.SupervisorStatusResponse) => void): grpc.ClientUnaryCall;
|
|
107
109
|
public supervisorStatus(request: status_pb.SupervisorStatusRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: status_pb.SupervisorStatusResponse) => void): grpc.ClientUnaryCall;
|
package/lib/status_grpc_pb.js
CHANGED
package/lib/status_pb.d.ts
CHANGED
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
// file: status.proto
|
|
3
3
|
|
|
4
4
|
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
5
6
|
|
|
6
7
|
import * as jspb from "google-protobuf";
|
|
8
|
+
import * as port_pb from "./port_pb";
|
|
7
9
|
|
|
8
10
|
export class SupervisorStatusRequest extends jspb.Message {
|
|
9
11
|
|
|
@@ -24,8 +26,7 @@ export namespace SupervisorStatusRequest {
|
|
|
24
26
|
|
|
25
27
|
export class SupervisorStatusResponse extends jspb.Message {
|
|
26
28
|
getOk(): boolean;
|
|
27
|
-
setOk(value: boolean):
|
|
28
|
-
|
|
29
|
+
setOk(value: boolean): SupervisorStatusResponse;
|
|
29
30
|
|
|
30
31
|
serializeBinary(): Uint8Array;
|
|
31
32
|
toObject(includeInstance?: boolean): SupervisorStatusResponse.AsObject;
|
|
@@ -45,8 +46,7 @@ export namespace SupervisorStatusResponse {
|
|
|
45
46
|
|
|
46
47
|
export class IDEStatusRequest extends jspb.Message {
|
|
47
48
|
getWait(): boolean;
|
|
48
|
-
setWait(value: boolean):
|
|
49
|
-
|
|
49
|
+
setWait(value: boolean): IDEStatusRequest;
|
|
50
50
|
|
|
51
51
|
serializeBinary(): Uint8Array;
|
|
52
52
|
toObject(includeInstance?: boolean): IDEStatusRequest.AsObject;
|
|
@@ -66,8 +66,12 @@ export namespace IDEStatusRequest {
|
|
|
66
66
|
|
|
67
67
|
export class IDEStatusResponse extends jspb.Message {
|
|
68
68
|
getOk(): boolean;
|
|
69
|
-
setOk(value: boolean):
|
|
69
|
+
setOk(value: boolean): IDEStatusResponse;
|
|
70
70
|
|
|
71
|
+
hasDesktop(): boolean;
|
|
72
|
+
clearDesktop(): void;
|
|
73
|
+
getDesktop(): IDEStatusResponse.DesktopStatus | undefined;
|
|
74
|
+
setDesktop(value?: IDEStatusResponse.DesktopStatus): IDEStatusResponse;
|
|
71
75
|
|
|
72
76
|
serializeBinary(): Uint8Array;
|
|
73
77
|
toObject(includeInstance?: boolean): IDEStatusResponse.AsObject;
|
|
@@ -82,13 +86,38 @@ export class IDEStatusResponse extends jspb.Message {
|
|
|
82
86
|
export namespace IDEStatusResponse {
|
|
83
87
|
export type AsObject = {
|
|
84
88
|
ok: boolean,
|
|
89
|
+
desktop?: IDEStatusResponse.DesktopStatus.AsObject,
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
export class DesktopStatus extends jspb.Message {
|
|
94
|
+
getLink(): string;
|
|
95
|
+
setLink(value: string): DesktopStatus;
|
|
96
|
+
getLabel(): string;
|
|
97
|
+
setLabel(value: string): DesktopStatus;
|
|
98
|
+
|
|
99
|
+
serializeBinary(): Uint8Array;
|
|
100
|
+
toObject(includeInstance?: boolean): DesktopStatus.AsObject;
|
|
101
|
+
static toObject(includeInstance: boolean, msg: DesktopStatus): DesktopStatus.AsObject;
|
|
102
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
103
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
104
|
+
static serializeBinaryToWriter(message: DesktopStatus, writer: jspb.BinaryWriter): void;
|
|
105
|
+
static deserializeBinary(bytes: Uint8Array): DesktopStatus;
|
|
106
|
+
static deserializeBinaryFromReader(message: DesktopStatus, reader: jspb.BinaryReader): DesktopStatus;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export namespace DesktopStatus {
|
|
110
|
+
export type AsObject = {
|
|
111
|
+
link: string,
|
|
112
|
+
label: string,
|
|
113
|
+
}
|
|
85
114
|
}
|
|
115
|
+
|
|
86
116
|
}
|
|
87
117
|
|
|
88
118
|
export class ContentStatusRequest extends jspb.Message {
|
|
89
119
|
getWait(): boolean;
|
|
90
|
-
setWait(value: boolean):
|
|
91
|
-
|
|
120
|
+
setWait(value: boolean): ContentStatusRequest;
|
|
92
121
|
|
|
93
122
|
serializeBinary(): Uint8Array;
|
|
94
123
|
toObject(includeInstance?: boolean): ContentStatusRequest.AsObject;
|
|
@@ -108,11 +137,9 @@ export namespace ContentStatusRequest {
|
|
|
108
137
|
|
|
109
138
|
export class ContentStatusResponse extends jspb.Message {
|
|
110
139
|
getAvailable(): boolean;
|
|
111
|
-
setAvailable(value: boolean):
|
|
112
|
-
|
|
140
|
+
setAvailable(value: boolean): ContentStatusResponse;
|
|
113
141
|
getSource(): ContentSource;
|
|
114
|
-
setSource(value: ContentSource):
|
|
115
|
-
|
|
142
|
+
setSource(value: ContentSource): ContentStatusResponse;
|
|
116
143
|
|
|
117
144
|
serializeBinary(): Uint8Array;
|
|
118
145
|
toObject(includeInstance?: boolean): ContentStatusResponse.AsObject;
|
|
@@ -150,8 +177,7 @@ export namespace BackupStatusRequest {
|
|
|
150
177
|
|
|
151
178
|
export class BackupStatusResponse extends jspb.Message {
|
|
152
179
|
getCanaryAvailable(): boolean;
|
|
153
|
-
setCanaryAvailable(value: boolean):
|
|
154
|
-
|
|
180
|
+
setCanaryAvailable(value: boolean): BackupStatusResponse;
|
|
155
181
|
|
|
156
182
|
serializeBinary(): Uint8Array;
|
|
157
183
|
toObject(includeInstance?: boolean): BackupStatusResponse.AsObject;
|
|
@@ -171,8 +197,7 @@ export namespace BackupStatusResponse {
|
|
|
171
197
|
|
|
172
198
|
export class PortsStatusRequest extends jspb.Message {
|
|
173
199
|
getObserve(): boolean;
|
|
174
|
-
setObserve(value: boolean):
|
|
175
|
-
|
|
200
|
+
setObserve(value: boolean): PortsStatusRequest;
|
|
176
201
|
|
|
177
202
|
serializeBinary(): Uint8Array;
|
|
178
203
|
toObject(includeInstance?: boolean): PortsStatusRequest.AsObject;
|
|
@@ -193,10 +218,9 @@ export namespace PortsStatusRequest {
|
|
|
193
218
|
export class PortsStatusResponse extends jspb.Message {
|
|
194
219
|
clearPortsList(): void;
|
|
195
220
|
getPortsList(): Array<PortsStatus>;
|
|
196
|
-
setPortsList(value: Array<PortsStatus>):
|
|
221
|
+
setPortsList(value: Array<PortsStatus>): PortsStatusResponse;
|
|
197
222
|
addPorts(value?: PortsStatus, index?: number): PortsStatus;
|
|
198
223
|
|
|
199
|
-
|
|
200
224
|
serializeBinary(): Uint8Array;
|
|
201
225
|
toObject(includeInstance?: boolean): PortsStatusResponse.AsObject;
|
|
202
226
|
static toObject(includeInstance: boolean, msg: PortsStatusResponse): PortsStatusResponse.AsObject;
|
|
@@ -215,14 +239,11 @@ export namespace PortsStatusResponse {
|
|
|
215
239
|
|
|
216
240
|
export class ExposedPortInfo extends jspb.Message {
|
|
217
241
|
getVisibility(): PortVisibility;
|
|
218
|
-
setVisibility(value: PortVisibility):
|
|
219
|
-
|
|
242
|
+
setVisibility(value: PortVisibility): ExposedPortInfo;
|
|
220
243
|
getUrl(): string;
|
|
221
|
-
setUrl(value: string):
|
|
222
|
-
|
|
244
|
+
setUrl(value: string): ExposedPortInfo;
|
|
223
245
|
getOnExposed(): OnPortExposedAction;
|
|
224
|
-
setOnExposed(value: OnPortExposedAction):
|
|
225
|
-
|
|
246
|
+
setOnExposed(value: OnPortExposedAction): ExposedPortInfo;
|
|
226
247
|
|
|
227
248
|
serializeBinary(): Uint8Array;
|
|
228
249
|
toObject(includeInstance?: boolean): ExposedPortInfo.AsObject;
|
|
@@ -242,22 +263,55 @@ export namespace ExposedPortInfo {
|
|
|
242
263
|
}
|
|
243
264
|
}
|
|
244
265
|
|
|
245
|
-
export class
|
|
246
|
-
|
|
247
|
-
|
|
266
|
+
export class TunneledPortInfo extends jspb.Message {
|
|
267
|
+
getTargetPort(): number;
|
|
268
|
+
setTargetPort(value: number): TunneledPortInfo;
|
|
269
|
+
getVisibility(): port_pb.TunnelVisiblity;
|
|
270
|
+
setVisibility(value: port_pb.TunnelVisiblity): TunneledPortInfo;
|
|
248
271
|
|
|
249
|
-
|
|
250
|
-
|
|
272
|
+
getClientsMap(): jspb.Map<string, number>;
|
|
273
|
+
clearClientsMap(): void;
|
|
251
274
|
|
|
252
|
-
|
|
253
|
-
|
|
275
|
+
serializeBinary(): Uint8Array;
|
|
276
|
+
toObject(includeInstance?: boolean): TunneledPortInfo.AsObject;
|
|
277
|
+
static toObject(includeInstance: boolean, msg: TunneledPortInfo): TunneledPortInfo.AsObject;
|
|
278
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
279
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
280
|
+
static serializeBinaryToWriter(message: TunneledPortInfo, writer: jspb.BinaryWriter): void;
|
|
281
|
+
static deserializeBinary(bytes: Uint8Array): TunneledPortInfo;
|
|
282
|
+
static deserializeBinaryFromReader(message: TunneledPortInfo, reader: jspb.BinaryReader): TunneledPortInfo;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
export namespace TunneledPortInfo {
|
|
286
|
+
export type AsObject = {
|
|
287
|
+
targetPort: number,
|
|
288
|
+
visibility: port_pb.TunnelVisiblity,
|
|
289
|
+
|
|
290
|
+
clientsMap: Array<[string, number]>,
|
|
291
|
+
}
|
|
292
|
+
}
|
|
254
293
|
|
|
294
|
+
export class PortsStatus extends jspb.Message {
|
|
295
|
+
getLocalPort(): number;
|
|
296
|
+
setLocalPort(value: number): PortsStatus;
|
|
297
|
+
getServed(): boolean;
|
|
298
|
+
setServed(value: boolean): PortsStatus;
|
|
255
299
|
|
|
256
300
|
hasExposed(): boolean;
|
|
257
301
|
clearExposed(): void;
|
|
258
302
|
getExposed(): ExposedPortInfo | undefined;
|
|
259
|
-
setExposed(value?: ExposedPortInfo):
|
|
260
|
-
|
|
303
|
+
setExposed(value?: ExposedPortInfo): PortsStatus;
|
|
304
|
+
getAutoExposure(): PortAutoExposure;
|
|
305
|
+
setAutoExposure(value: PortAutoExposure): PortsStatus;
|
|
306
|
+
|
|
307
|
+
hasTunneled(): boolean;
|
|
308
|
+
clearTunneled(): void;
|
|
309
|
+
getTunneled(): TunneledPortInfo | undefined;
|
|
310
|
+
setTunneled(value?: TunneledPortInfo): PortsStatus;
|
|
311
|
+
getDescription(): string;
|
|
312
|
+
setDescription(value: string): PortsStatus;
|
|
313
|
+
getName(): string;
|
|
314
|
+
setName(value: string): PortsStatus;
|
|
261
315
|
|
|
262
316
|
serializeBinary(): Uint8Array;
|
|
263
317
|
toObject(includeInstance?: boolean): PortsStatus.AsObject;
|
|
@@ -272,16 +326,18 @@ export class PortsStatus extends jspb.Message {
|
|
|
272
326
|
export namespace PortsStatus {
|
|
273
327
|
export type AsObject = {
|
|
274
328
|
localPort: number,
|
|
275
|
-
globalPort: number,
|
|
276
329
|
served: boolean,
|
|
277
330
|
exposed?: ExposedPortInfo.AsObject,
|
|
331
|
+
autoExposure: PortAutoExposure,
|
|
332
|
+
tunneled?: TunneledPortInfo.AsObject,
|
|
333
|
+
description: string,
|
|
334
|
+
name: string,
|
|
278
335
|
}
|
|
279
336
|
}
|
|
280
337
|
|
|
281
338
|
export class TasksStatusRequest extends jspb.Message {
|
|
282
339
|
getObserve(): boolean;
|
|
283
|
-
setObserve(value: boolean):
|
|
284
|
-
|
|
340
|
+
setObserve(value: boolean): TasksStatusRequest;
|
|
285
341
|
|
|
286
342
|
serializeBinary(): Uint8Array;
|
|
287
343
|
toObject(includeInstance?: boolean): TasksStatusRequest.AsObject;
|
|
@@ -302,10 +358,9 @@ export namespace TasksStatusRequest {
|
|
|
302
358
|
export class TasksStatusResponse extends jspb.Message {
|
|
303
359
|
clearTasksList(): void;
|
|
304
360
|
getTasksList(): Array<TaskStatus>;
|
|
305
|
-
setTasksList(value: Array<TaskStatus>):
|
|
361
|
+
setTasksList(value: Array<TaskStatus>): TasksStatusResponse;
|
|
306
362
|
addTasks(value?: TaskStatus, index?: number): TaskStatus;
|
|
307
363
|
|
|
308
|
-
|
|
309
364
|
serializeBinary(): Uint8Array;
|
|
310
365
|
toObject(includeInstance?: boolean): TasksStatusResponse.AsObject;
|
|
311
366
|
static toObject(includeInstance: boolean, msg: TasksStatusResponse): TasksStatusResponse.AsObject;
|
|
@@ -324,20 +379,16 @@ export namespace TasksStatusResponse {
|
|
|
324
379
|
|
|
325
380
|
export class TaskStatus extends jspb.Message {
|
|
326
381
|
getId(): string;
|
|
327
|
-
setId(value: string):
|
|
328
|
-
|
|
382
|
+
setId(value: string): TaskStatus;
|
|
329
383
|
getState(): TaskState;
|
|
330
|
-
setState(value: TaskState):
|
|
331
|
-
|
|
384
|
+
setState(value: TaskState): TaskStatus;
|
|
332
385
|
getTerminal(): string;
|
|
333
|
-
setTerminal(value: string):
|
|
334
|
-
|
|
386
|
+
setTerminal(value: string): TaskStatus;
|
|
335
387
|
|
|
336
388
|
hasPresentation(): boolean;
|
|
337
389
|
clearPresentation(): void;
|
|
338
390
|
getPresentation(): TaskPresentation | undefined;
|
|
339
|
-
setPresentation(value?: TaskPresentation):
|
|
340
|
-
|
|
391
|
+
setPresentation(value?: TaskPresentation): TaskStatus;
|
|
341
392
|
|
|
342
393
|
serializeBinary(): Uint8Array;
|
|
343
394
|
toObject(includeInstance?: boolean): TaskStatus.AsObject;
|
|
@@ -360,14 +411,11 @@ export namespace TaskStatus {
|
|
|
360
411
|
|
|
361
412
|
export class TaskPresentation extends jspb.Message {
|
|
362
413
|
getName(): string;
|
|
363
|
-
setName(value: string):
|
|
364
|
-
|
|
414
|
+
setName(value: string): TaskPresentation;
|
|
365
415
|
getOpenIn(): string;
|
|
366
|
-
setOpenIn(value: string):
|
|
367
|
-
|
|
416
|
+
setOpenIn(value: string): TaskPresentation;
|
|
368
417
|
getOpenMode(): string;
|
|
369
|
-
setOpenMode(value: string):
|
|
370
|
-
|
|
418
|
+
setOpenMode(value: string): TaskPresentation;
|
|
371
419
|
|
|
372
420
|
serializeBinary(): Uint8Array;
|
|
373
421
|
toObject(includeInstance?: boolean): TaskPresentation.AsObject;
|
|
@@ -406,6 +454,12 @@ export enum OnPortExposedAction {
|
|
|
406
454
|
NOTIFY_PRIVATE = 4,
|
|
407
455
|
}
|
|
408
456
|
|
|
457
|
+
export enum PortAutoExposure {
|
|
458
|
+
TRYING = 0,
|
|
459
|
+
SUCCEEDED = 1,
|
|
460
|
+
FAILED = 2,
|
|
461
|
+
}
|
|
462
|
+
|
|
409
463
|
export enum TaskState {
|
|
410
464
|
OPENING = 0,
|
|
411
465
|
RUNNING = 1,
|