@gitpod/public-api 0.1.5-sje-installer-proxy-config-backup.0 → 0.1.5-sje-no-log-envvars.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.
Files changed (33) hide show
  1. package/lib/gitpod/v1/pagination_pb.d.ts +27 -30
  2. package/lib/gitpod/v1/pagination_pb.d.ts.map +1 -0
  3. package/lib/gitpod/v1/pagination_pb.js +43 -199
  4. package/lib/gitpod/v1/pagination_pb.js.map +1 -0
  5. package/lib/gitpod/v1/pagination_pb.ts +60 -0
  6. package/lib/gitpod/v1/prebuilds_connectweb.d.ts +65 -0
  7. package/lib/gitpod/v1/prebuilds_connectweb.d.ts.map +1 -0
  8. package/lib/gitpod/v1/prebuilds_connectweb.js +72 -0
  9. package/lib/gitpod/v1/prebuilds_connectweb.js.map +1 -0
  10. package/lib/gitpod/v1/prebuilds_connectweb.ts +71 -0
  11. package/lib/gitpod/v1/prebuilds_pb.d.ts +263 -265
  12. package/lib/gitpod/v1/prebuilds_pb.d.ts.map +1 -0
  13. package/lib/gitpod/v1/prebuilds_pb.js +398 -1960
  14. package/lib/gitpod/v1/prebuilds_pb.js.map +1 -0
  15. package/lib/gitpod/v1/prebuilds_pb.ts +540 -0
  16. package/lib/gitpod/v1/workspaces_connectweb.d.ts +134 -0
  17. package/lib/gitpod/v1/workspaces_connectweb.d.ts.map +1 -0
  18. package/lib/gitpod/v1/workspaces_connectweb.js +141 -0
  19. package/lib/gitpod/v1/workspaces_connectweb.js.map +1 -0
  20. package/lib/gitpod/v1/workspaces_connectweb.ts +140 -0
  21. package/lib/gitpod/v1/workspaces_pb.d.ts +819 -804
  22. package/lib/gitpod/v1/workspaces_pb.d.ts.map +1 -0
  23. package/lib/gitpod/v1/workspaces_pb.js +1148 -5941
  24. package/lib/gitpod/v1/workspaces_pb.js.map +1 -0
  25. package/lib/gitpod/v1/workspaces_pb.ts +1509 -0
  26. package/package.json +7 -10
  27. package/pkg-yarn.lock +5 -5
  28. package/provenance-bundle.jsonl +2 -2
  29. package/lib/gitpod/v1/pagination_grpc_pb.js +0 -7
  30. package/lib/gitpod/v1/prebuilds_grpc_pb.d.ts +0 -95
  31. package/lib/gitpod/v1/prebuilds_grpc_pb.js +0 -161
  32. package/lib/gitpod/v1/workspaces_grpc_pb.d.ts +0 -197
  33. package/lib/gitpod/v1/workspaces_grpc_pb.js +0 -368
@@ -3,808 +3,823 @@
3
3
  * Licensed under the GNU Affero General Public License (AGPL).
4
4
  * See License-AGPL.txt in the project root for license information.
5
5
  */
6
-
7
- // package: gitpod.v1
8
- // file: gitpod/v1/workspaces.proto
9
-
10
- /* tslint:disable */
11
- /* eslint-disable */
12
-
13
- import * as jspb from "google-protobuf";
14
- import * as google_protobuf_timestamp_pb from "google-protobuf/google/protobuf/timestamp_pb";
15
- import * as google_protobuf_field_mask_pb from "google-protobuf/google/protobuf/field_mask_pb";
16
- import * as gitpod_v1_pagination_pb from "../../gitpod/v1/pagination_pb";
17
-
18
- export class ListWorkspacesRequest extends jspb.Message {
19
-
20
- hasPagination(): boolean;
21
- clearPagination(): void;
22
- getPagination(): gitpod_v1_pagination_pb.Pagination | undefined;
23
- setPagination(value?: gitpod_v1_pagination_pb.Pagination): ListWorkspacesRequest;
24
-
25
- hasFieldMask(): boolean;
26
- clearFieldMask(): void;
27
- getFieldMask(): google_protobuf_field_mask_pb.FieldMask | undefined;
28
- setFieldMask(value?: google_protobuf_field_mask_pb.FieldMask): ListWorkspacesRequest;
29
-
30
- serializeBinary(): Uint8Array;
31
- toObject(includeInstance?: boolean): ListWorkspacesRequest.AsObject;
32
- static toObject(includeInstance: boolean, msg: ListWorkspacesRequest): ListWorkspacesRequest.AsObject;
33
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
34
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
35
- static serializeBinaryToWriter(message: ListWorkspacesRequest, writer: jspb.BinaryWriter): void;
36
- static deserializeBinary(bytes: Uint8Array): ListWorkspacesRequest;
37
- static deserializeBinaryFromReader(message: ListWorkspacesRequest, reader: jspb.BinaryReader): ListWorkspacesRequest;
38
- }
39
-
40
- export namespace ListWorkspacesRequest {
41
- export type AsObject = {
42
- pagination?: gitpod_v1_pagination_pb.Pagination.AsObject,
43
- fieldMask?: google_protobuf_field_mask_pb.FieldMask.AsObject,
44
- }
45
- }
46
-
47
- export class ListWorkspacesResponse extends jspb.Message {
48
- getNextPageToken(): string;
49
- setNextPageToken(value: string): ListWorkspacesResponse;
50
- clearResultList(): void;
51
- getResultList(): Array<ListWorkspacesResponse.WorkspaceAndInstance>;
52
- setResultList(value: Array<ListWorkspacesResponse.WorkspaceAndInstance>): ListWorkspacesResponse;
53
- addResult(value?: ListWorkspacesResponse.WorkspaceAndInstance, index?: number): ListWorkspacesResponse.WorkspaceAndInstance;
54
-
55
- serializeBinary(): Uint8Array;
56
- toObject(includeInstance?: boolean): ListWorkspacesResponse.AsObject;
57
- static toObject(includeInstance: boolean, msg: ListWorkspacesResponse): ListWorkspacesResponse.AsObject;
58
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
59
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
60
- static serializeBinaryToWriter(message: ListWorkspacesResponse, writer: jspb.BinaryWriter): void;
61
- static deserializeBinary(bytes: Uint8Array): ListWorkspacesResponse;
62
- static deserializeBinaryFromReader(message: ListWorkspacesResponse, reader: jspb.BinaryReader): ListWorkspacesResponse;
63
- }
64
-
65
- export namespace ListWorkspacesResponse {
66
- export type AsObject = {
67
- nextPageToken: string,
68
- resultList: Array<ListWorkspacesResponse.WorkspaceAndInstance.AsObject>,
69
- }
70
-
71
-
72
- export class WorkspaceAndInstance extends jspb.Message {
73
-
74
- hasResult(): boolean;
75
- clearResult(): void;
76
- getResult(): Workspace | undefined;
77
- setResult(value?: Workspace): WorkspaceAndInstance;
78
-
79
- hasLastActiveInstances(): boolean;
80
- clearLastActiveInstances(): void;
81
- getLastActiveInstances(): WorkspaceInstance | undefined;
82
- setLastActiveInstances(value?: WorkspaceInstance): WorkspaceAndInstance;
83
-
84
- serializeBinary(): Uint8Array;
85
- toObject(includeInstance?: boolean): WorkspaceAndInstance.AsObject;
86
- static toObject(includeInstance: boolean, msg: WorkspaceAndInstance): WorkspaceAndInstance.AsObject;
87
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
88
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
89
- static serializeBinaryToWriter(message: WorkspaceAndInstance, writer: jspb.BinaryWriter): void;
90
- static deserializeBinary(bytes: Uint8Array): WorkspaceAndInstance;
91
- static deserializeBinaryFromReader(message: WorkspaceAndInstance, reader: jspb.BinaryReader): WorkspaceAndInstance;
92
- }
93
-
94
- export namespace WorkspaceAndInstance {
95
- export type AsObject = {
96
- result?: Workspace.AsObject,
97
- lastActiveInstances?: WorkspaceInstance.AsObject,
98
- }
99
- }
100
-
101
- }
102
-
103
- export class GetWorkspaceRequest extends jspb.Message {
104
- getWorkspaceId(): string;
105
- setWorkspaceId(value: string): GetWorkspaceRequest;
106
-
107
- serializeBinary(): Uint8Array;
108
- toObject(includeInstance?: boolean): GetWorkspaceRequest.AsObject;
109
- static toObject(includeInstance: boolean, msg: GetWorkspaceRequest): GetWorkspaceRequest.AsObject;
110
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
111
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
112
- static serializeBinaryToWriter(message: GetWorkspaceRequest, writer: jspb.BinaryWriter): void;
113
- static deserializeBinary(bytes: Uint8Array): GetWorkspaceRequest;
114
- static deserializeBinaryFromReader(message: GetWorkspaceRequest, reader: jspb.BinaryReader): GetWorkspaceRequest;
115
- }
116
-
117
- export namespace GetWorkspaceRequest {
118
- export type AsObject = {
119
- workspaceId: string,
120
- }
121
- }
122
-
123
- export class GetWorkspaceResponse extends jspb.Message {
124
-
125
- hasResult(): boolean;
126
- clearResult(): void;
127
- getResult(): Workspace | undefined;
128
- setResult(value?: Workspace): GetWorkspaceResponse;
129
-
130
- serializeBinary(): Uint8Array;
131
- toObject(includeInstance?: boolean): GetWorkspaceResponse.AsObject;
132
- static toObject(includeInstance: boolean, msg: GetWorkspaceResponse): GetWorkspaceResponse.AsObject;
133
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
134
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
135
- static serializeBinaryToWriter(message: GetWorkspaceResponse, writer: jspb.BinaryWriter): void;
136
- static deserializeBinary(bytes: Uint8Array): GetWorkspaceResponse;
137
- static deserializeBinaryFromReader(message: GetWorkspaceResponse, reader: jspb.BinaryReader): GetWorkspaceResponse;
138
- }
139
-
140
- export namespace GetWorkspaceResponse {
141
- export type AsObject = {
142
- result?: Workspace.AsObject,
143
- }
144
- }
145
-
146
- export class GetOwnerTokenRequest extends jspb.Message {
147
- getWorkspaceId(): string;
148
- setWorkspaceId(value: string): GetOwnerTokenRequest;
149
-
150
- serializeBinary(): Uint8Array;
151
- toObject(includeInstance?: boolean): GetOwnerTokenRequest.AsObject;
152
- static toObject(includeInstance: boolean, msg: GetOwnerTokenRequest): GetOwnerTokenRequest.AsObject;
153
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
154
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
155
- static serializeBinaryToWriter(message: GetOwnerTokenRequest, writer: jspb.BinaryWriter): void;
156
- static deserializeBinary(bytes: Uint8Array): GetOwnerTokenRequest;
157
- static deserializeBinaryFromReader(message: GetOwnerTokenRequest, reader: jspb.BinaryReader): GetOwnerTokenRequest;
158
- }
159
-
160
- export namespace GetOwnerTokenRequest {
161
- export type AsObject = {
162
- workspaceId: string,
163
- }
164
- }
165
-
166
- export class GetOwnerTokenResponse extends jspb.Message {
167
- getToken(): string;
168
- setToken(value: string): GetOwnerTokenResponse;
169
-
170
- serializeBinary(): Uint8Array;
171
- toObject(includeInstance?: boolean): GetOwnerTokenResponse.AsObject;
172
- static toObject(includeInstance: boolean, msg: GetOwnerTokenResponse): GetOwnerTokenResponse.AsObject;
173
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
174
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
175
- static serializeBinaryToWriter(message: GetOwnerTokenResponse, writer: jspb.BinaryWriter): void;
176
- static deserializeBinary(bytes: Uint8Array): GetOwnerTokenResponse;
177
- static deserializeBinaryFromReader(message: GetOwnerTokenResponse, reader: jspb.BinaryReader): GetOwnerTokenResponse;
178
- }
179
-
180
- export namespace GetOwnerTokenResponse {
181
- export type AsObject = {
182
- token: string,
183
- }
184
- }
185
-
186
- export class CreateAndStartWorkspaceRequest extends jspb.Message {
187
- getIdempotencyToken(): string;
188
- setIdempotencyToken(value: string): CreateAndStartWorkspaceRequest;
189
-
190
- hasContextUrl(): boolean;
191
- clearContextUrl(): void;
192
- getContextUrl(): string;
193
- setContextUrl(value: string): CreateAndStartWorkspaceRequest;
194
-
195
- hasPrebuildId(): boolean;
196
- clearPrebuildId(): void;
197
- getPrebuildId(): string;
198
- setPrebuildId(value: string): CreateAndStartWorkspaceRequest;
199
-
200
- hasStartSpec(): boolean;
201
- clearStartSpec(): void;
202
- getStartSpec(): StartWorkspaceSpec | undefined;
203
- setStartSpec(value?: StartWorkspaceSpec): CreateAndStartWorkspaceRequest;
204
-
205
- getSourceCase(): CreateAndStartWorkspaceRequest.SourceCase;
206
-
207
- serializeBinary(): Uint8Array;
208
- toObject(includeInstance?: boolean): CreateAndStartWorkspaceRequest.AsObject;
209
- static toObject(includeInstance: boolean, msg: CreateAndStartWorkspaceRequest): CreateAndStartWorkspaceRequest.AsObject;
210
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
211
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
212
- static serializeBinaryToWriter(message: CreateAndStartWorkspaceRequest, writer: jspb.BinaryWriter): void;
213
- static deserializeBinary(bytes: Uint8Array): CreateAndStartWorkspaceRequest;
214
- static deserializeBinaryFromReader(message: CreateAndStartWorkspaceRequest, reader: jspb.BinaryReader): CreateAndStartWorkspaceRequest;
215
- }
216
-
217
- export namespace CreateAndStartWorkspaceRequest {
218
- export type AsObject = {
219
- idempotencyToken: string,
220
- contextUrl: string,
221
- prebuildId: string,
222
- startSpec?: StartWorkspaceSpec.AsObject,
223
- }
224
-
225
- export enum SourceCase {
226
- SOURCE_NOT_SET = 0,
227
- CONTEXT_URL = 2,
228
- PREBUILD_ID = 3,
229
- }
230
-
231
- }
232
-
233
- export class CreateAndStartWorkspaceResponse extends jspb.Message {
234
- getWorkspaceId(): string;
235
- setWorkspaceId(value: string): CreateAndStartWorkspaceResponse;
236
-
237
- serializeBinary(): Uint8Array;
238
- toObject(includeInstance?: boolean): CreateAndStartWorkspaceResponse.AsObject;
239
- static toObject(includeInstance: boolean, msg: CreateAndStartWorkspaceResponse): CreateAndStartWorkspaceResponse.AsObject;
240
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
241
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
242
- static serializeBinaryToWriter(message: CreateAndStartWorkspaceResponse, writer: jspb.BinaryWriter): void;
243
- static deserializeBinary(bytes: Uint8Array): CreateAndStartWorkspaceResponse;
244
- static deserializeBinaryFromReader(message: CreateAndStartWorkspaceResponse, reader: jspb.BinaryReader): CreateAndStartWorkspaceResponse;
245
- }
246
-
247
- export namespace CreateAndStartWorkspaceResponse {
248
- export type AsObject = {
249
- workspaceId: string,
250
- }
251
- }
252
-
253
- export class StartWorkspaceRequest extends jspb.Message {
254
- getIdempotencyToken(): string;
255
- setIdempotencyToken(value: string): StartWorkspaceRequest;
256
- getWorkspaceId(): string;
257
- setWorkspaceId(value: string): StartWorkspaceRequest;
258
-
259
- hasSpec(): boolean;
260
- clearSpec(): void;
261
- getSpec(): StartWorkspaceSpec | undefined;
262
- setSpec(value?: StartWorkspaceSpec): StartWorkspaceRequest;
263
-
264
- serializeBinary(): Uint8Array;
265
- toObject(includeInstance?: boolean): StartWorkspaceRequest.AsObject;
266
- static toObject(includeInstance: boolean, msg: StartWorkspaceRequest): StartWorkspaceRequest.AsObject;
267
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
268
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
269
- static serializeBinaryToWriter(message: StartWorkspaceRequest, writer: jspb.BinaryWriter): void;
270
- static deserializeBinary(bytes: Uint8Array): StartWorkspaceRequest;
271
- static deserializeBinaryFromReader(message: StartWorkspaceRequest, reader: jspb.BinaryReader): StartWorkspaceRequest;
272
- }
273
-
274
- export namespace StartWorkspaceRequest {
275
- export type AsObject = {
276
- idempotencyToken: string,
277
- workspaceId: string,
278
- spec?: StartWorkspaceSpec.AsObject,
279
- }
280
- }
281
-
282
- export class StartWorkspaceResponse extends jspb.Message {
283
- getInstanceId(): string;
284
- setInstanceId(value: string): StartWorkspaceResponse;
285
- getWorkspaceUrl(): string;
286
- setWorkspaceUrl(value: string): StartWorkspaceResponse;
287
-
288
- serializeBinary(): Uint8Array;
289
- toObject(includeInstance?: boolean): StartWorkspaceResponse.AsObject;
290
- static toObject(includeInstance: boolean, msg: StartWorkspaceResponse): StartWorkspaceResponse.AsObject;
291
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
292
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
293
- static serializeBinaryToWriter(message: StartWorkspaceResponse, writer: jspb.BinaryWriter): void;
294
- static deserializeBinary(bytes: Uint8Array): StartWorkspaceResponse;
295
- static deserializeBinaryFromReader(message: StartWorkspaceResponse, reader: jspb.BinaryReader): StartWorkspaceResponse;
296
- }
297
-
298
- export namespace StartWorkspaceResponse {
299
- export type AsObject = {
300
- instanceId: string,
301
- workspaceUrl: string,
302
- }
303
- }
304
-
305
- export class GetActiveWorkspaceInstanceRequest extends jspb.Message {
306
- getWorkspaceId(): string;
307
- setWorkspaceId(value: string): GetActiveWorkspaceInstanceRequest;
308
-
309
- serializeBinary(): Uint8Array;
310
- toObject(includeInstance?: boolean): GetActiveWorkspaceInstanceRequest.AsObject;
311
- static toObject(includeInstance: boolean, msg: GetActiveWorkspaceInstanceRequest): GetActiveWorkspaceInstanceRequest.AsObject;
312
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
313
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
314
- static serializeBinaryToWriter(message: GetActiveWorkspaceInstanceRequest, writer: jspb.BinaryWriter): void;
315
- static deserializeBinary(bytes: Uint8Array): GetActiveWorkspaceInstanceRequest;
316
- static deserializeBinaryFromReader(message: GetActiveWorkspaceInstanceRequest, reader: jspb.BinaryReader): GetActiveWorkspaceInstanceRequest;
317
- }
318
-
319
- export namespace GetActiveWorkspaceInstanceRequest {
320
- export type AsObject = {
321
- workspaceId: string,
322
- }
323
- }
324
-
325
- export class GetActiveWorkspaceInstanceResponse extends jspb.Message {
326
-
327
- hasInstance(): boolean;
328
- clearInstance(): void;
329
- getInstance(): WorkspaceInstance | undefined;
330
- setInstance(value?: WorkspaceInstance): GetActiveWorkspaceInstanceResponse;
331
-
332
- serializeBinary(): Uint8Array;
333
- toObject(includeInstance?: boolean): GetActiveWorkspaceInstanceResponse.AsObject;
334
- static toObject(includeInstance: boolean, msg: GetActiveWorkspaceInstanceResponse): GetActiveWorkspaceInstanceResponse.AsObject;
335
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
336
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
337
- static serializeBinaryToWriter(message: GetActiveWorkspaceInstanceResponse, writer: jspb.BinaryWriter): void;
338
- static deserializeBinary(bytes: Uint8Array): GetActiveWorkspaceInstanceResponse;
339
- static deserializeBinaryFromReader(message: GetActiveWorkspaceInstanceResponse, reader: jspb.BinaryReader): GetActiveWorkspaceInstanceResponse;
340
- }
341
-
342
- export namespace GetActiveWorkspaceInstanceResponse {
343
- export type AsObject = {
344
- instance?: WorkspaceInstance.AsObject,
345
- }
346
- }
347
-
348
- export class GetWorkspaceInstanceOwnerTokenRequest extends jspb.Message {
349
- getInstanceId(): string;
350
- setInstanceId(value: string): GetWorkspaceInstanceOwnerTokenRequest;
351
-
352
- serializeBinary(): Uint8Array;
353
- toObject(includeInstance?: boolean): GetWorkspaceInstanceOwnerTokenRequest.AsObject;
354
- static toObject(includeInstance: boolean, msg: GetWorkspaceInstanceOwnerTokenRequest): GetWorkspaceInstanceOwnerTokenRequest.AsObject;
355
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
356
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
357
- static serializeBinaryToWriter(message: GetWorkspaceInstanceOwnerTokenRequest, writer: jspb.BinaryWriter): void;
358
- static deserializeBinary(bytes: Uint8Array): GetWorkspaceInstanceOwnerTokenRequest;
359
- static deserializeBinaryFromReader(message: GetWorkspaceInstanceOwnerTokenRequest, reader: jspb.BinaryReader): GetWorkspaceInstanceOwnerTokenRequest;
360
- }
361
-
362
- export namespace GetWorkspaceInstanceOwnerTokenRequest {
363
- export type AsObject = {
364
- instanceId: string,
365
- }
366
- }
367
-
368
- export class GetWorkspaceInstanceOwnerTokenResponse extends jspb.Message {
369
- getOwnerToken(): string;
370
- setOwnerToken(value: string): GetWorkspaceInstanceOwnerTokenResponse;
371
-
372
- serializeBinary(): Uint8Array;
373
- toObject(includeInstance?: boolean): GetWorkspaceInstanceOwnerTokenResponse.AsObject;
374
- static toObject(includeInstance: boolean, msg: GetWorkspaceInstanceOwnerTokenResponse): GetWorkspaceInstanceOwnerTokenResponse.AsObject;
375
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
376
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
377
- static serializeBinaryToWriter(message: GetWorkspaceInstanceOwnerTokenResponse, writer: jspb.BinaryWriter): void;
378
- static deserializeBinary(bytes: Uint8Array): GetWorkspaceInstanceOwnerTokenResponse;
379
- static deserializeBinaryFromReader(message: GetWorkspaceInstanceOwnerTokenResponse, reader: jspb.BinaryReader): GetWorkspaceInstanceOwnerTokenResponse;
380
- }
381
-
382
- export namespace GetWorkspaceInstanceOwnerTokenResponse {
383
- export type AsObject = {
384
- ownerToken: string,
385
- }
386
- }
387
-
388
- export class ListenToWorkspaceInstanceRequest extends jspb.Message {
389
- getInstanceId(): string;
390
- setInstanceId(value: string): ListenToWorkspaceInstanceRequest;
391
-
392
- serializeBinary(): Uint8Array;
393
- toObject(includeInstance?: boolean): ListenToWorkspaceInstanceRequest.AsObject;
394
- static toObject(includeInstance: boolean, msg: ListenToWorkspaceInstanceRequest): ListenToWorkspaceInstanceRequest.AsObject;
395
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
396
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
397
- static serializeBinaryToWriter(message: ListenToWorkspaceInstanceRequest, writer: jspb.BinaryWriter): void;
398
- static deserializeBinary(bytes: Uint8Array): ListenToWorkspaceInstanceRequest;
399
- static deserializeBinaryFromReader(message: ListenToWorkspaceInstanceRequest, reader: jspb.BinaryReader): ListenToWorkspaceInstanceRequest;
400
- }
401
-
402
- export namespace ListenToWorkspaceInstanceRequest {
403
- export type AsObject = {
404
- instanceId: string,
405
- }
406
- }
407
-
408
- export class ListenToWorkspaceInstanceResponse extends jspb.Message {
409
-
410
- hasInstanceStatus(): boolean;
411
- clearInstanceStatus(): void;
412
- getInstanceStatus(): WorkspaceInstanceStatus | undefined;
413
- setInstanceStatus(value?: WorkspaceInstanceStatus): ListenToWorkspaceInstanceResponse;
414
-
415
- serializeBinary(): Uint8Array;
416
- toObject(includeInstance?: boolean): ListenToWorkspaceInstanceResponse.AsObject;
417
- static toObject(includeInstance: boolean, msg: ListenToWorkspaceInstanceResponse): ListenToWorkspaceInstanceResponse.AsObject;
418
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
419
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
420
- static serializeBinaryToWriter(message: ListenToWorkspaceInstanceResponse, writer: jspb.BinaryWriter): void;
421
- static deserializeBinary(bytes: Uint8Array): ListenToWorkspaceInstanceResponse;
422
- static deserializeBinaryFromReader(message: ListenToWorkspaceInstanceResponse, reader: jspb.BinaryReader): ListenToWorkspaceInstanceResponse;
423
- }
424
-
425
- export namespace ListenToWorkspaceInstanceResponse {
426
- export type AsObject = {
427
- instanceStatus?: WorkspaceInstanceStatus.AsObject,
428
- }
429
- }
430
-
431
- export class ListenToImageBuildLogsRequest extends jspb.Message {
432
- getInstanceId(): string;
433
- setInstanceId(value: string): ListenToImageBuildLogsRequest;
434
-
435
- serializeBinary(): Uint8Array;
436
- toObject(includeInstance?: boolean): ListenToImageBuildLogsRequest.AsObject;
437
- static toObject(includeInstance: boolean, msg: ListenToImageBuildLogsRequest): ListenToImageBuildLogsRequest.AsObject;
438
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
439
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
440
- static serializeBinaryToWriter(message: ListenToImageBuildLogsRequest, writer: jspb.BinaryWriter): void;
441
- static deserializeBinary(bytes: Uint8Array): ListenToImageBuildLogsRequest;
442
- static deserializeBinaryFromReader(message: ListenToImageBuildLogsRequest, reader: jspb.BinaryReader): ListenToImageBuildLogsRequest;
443
- }
444
-
445
- export namespace ListenToImageBuildLogsRequest {
446
- export type AsObject = {
447
- instanceId: string,
448
- }
449
- }
450
-
451
- export class ListenToImageBuildLogsResponse extends jspb.Message {
452
- getLine(): string;
453
- setLine(value: string): ListenToImageBuildLogsResponse;
454
-
455
- serializeBinary(): Uint8Array;
456
- toObject(includeInstance?: boolean): ListenToImageBuildLogsResponse.AsObject;
457
- static toObject(includeInstance: boolean, msg: ListenToImageBuildLogsResponse): ListenToImageBuildLogsResponse.AsObject;
458
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
459
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
460
- static serializeBinaryToWriter(message: ListenToImageBuildLogsResponse, writer: jspb.BinaryWriter): void;
461
- static deserializeBinary(bytes: Uint8Array): ListenToImageBuildLogsResponse;
462
- static deserializeBinaryFromReader(message: ListenToImageBuildLogsResponse, reader: jspb.BinaryReader): ListenToImageBuildLogsResponse;
463
- }
464
-
465
- export namespace ListenToImageBuildLogsResponse {
466
- export type AsObject = {
467
- line: string,
468
- }
469
- }
470
-
471
- export class StopWorkspaceRequest extends jspb.Message {
472
- getIdempotencyToken(): string;
473
- setIdempotencyToken(value: string): StopWorkspaceRequest;
474
- getWorkspaceId(): string;
475
- setWorkspaceId(value: string): StopWorkspaceRequest;
476
-
477
- serializeBinary(): Uint8Array;
478
- toObject(includeInstance?: boolean): StopWorkspaceRequest.AsObject;
479
- static toObject(includeInstance: boolean, msg: StopWorkspaceRequest): StopWorkspaceRequest.AsObject;
480
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
481
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
482
- static serializeBinaryToWriter(message: StopWorkspaceRequest, writer: jspb.BinaryWriter): void;
483
- static deserializeBinary(bytes: Uint8Array): StopWorkspaceRequest;
484
- static deserializeBinaryFromReader(message: StopWorkspaceRequest, reader: jspb.BinaryReader): StopWorkspaceRequest;
485
- }
486
-
487
- export namespace StopWorkspaceRequest {
488
- export type AsObject = {
489
- idempotencyToken: string,
490
- workspaceId: string,
491
- }
492
- }
493
-
494
- export class StopWorkspaceResponse extends jspb.Message {
495
-
496
- serializeBinary(): Uint8Array;
497
- toObject(includeInstance?: boolean): StopWorkspaceResponse.AsObject;
498
- static toObject(includeInstance: boolean, msg: StopWorkspaceResponse): StopWorkspaceResponse.AsObject;
499
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
500
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
501
- static serializeBinaryToWriter(message: StopWorkspaceResponse, writer: jspb.BinaryWriter): void;
502
- static deserializeBinary(bytes: Uint8Array): StopWorkspaceResponse;
503
- static deserializeBinaryFromReader(message: StopWorkspaceResponse, reader: jspb.BinaryReader): StopWorkspaceResponse;
504
- }
505
-
506
- export namespace StopWorkspaceResponse {
507
- export type AsObject = {
508
- }
509
- }
510
-
511
- export class Workspace extends jspb.Message {
512
- getWorkspaceId(): string;
513
- setWorkspaceId(value: string): Workspace;
514
- getOwnerId(): string;
515
- setOwnerId(value: string): Workspace;
516
- getProjectId(): string;
517
- setProjectId(value: string): Workspace;
518
-
519
- hasContext(): boolean;
520
- clearContext(): void;
521
- getContext(): WorkspaceContext | undefined;
522
- setContext(value?: WorkspaceContext): Workspace;
523
- getDescription(): string;
524
- setDescription(value: string): Workspace;
525
-
526
- serializeBinary(): Uint8Array;
527
- toObject(includeInstance?: boolean): Workspace.AsObject;
528
- static toObject(includeInstance: boolean, msg: Workspace): Workspace.AsObject;
529
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
530
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
531
- static serializeBinaryToWriter(message: Workspace, writer: jspb.BinaryWriter): void;
532
- static deserializeBinary(bytes: Uint8Array): Workspace;
533
- static deserializeBinaryFromReader(message: Workspace, reader: jspb.BinaryReader): Workspace;
534
- }
535
-
536
- export namespace Workspace {
537
- export type AsObject = {
538
- workspaceId: string,
539
- ownerId: string,
540
- projectId: string,
541
- context?: WorkspaceContext.AsObject,
542
- description: string,
543
- }
544
- }
545
-
546
- export class WorkspaceContext extends jspb.Message {
547
- getContextUrl(): string;
548
- setContextUrl(value: string): WorkspaceContext;
549
-
550
- hasGit(): boolean;
551
- clearGit(): void;
552
- getGit(): WorkspaceContext.Git | undefined;
553
- setGit(value?: WorkspaceContext.Git): WorkspaceContext;
554
-
555
- hasPrebuild(): boolean;
556
- clearPrebuild(): void;
557
- getPrebuild(): WorkspaceContext.Prebuild | undefined;
558
- setPrebuild(value?: WorkspaceContext.Prebuild): WorkspaceContext;
559
-
560
- hasSnapshot(): boolean;
561
- clearSnapshot(): void;
562
- getSnapshot(): WorkspaceContext.Snapshot | undefined;
563
- setSnapshot(value?: WorkspaceContext.Snapshot): WorkspaceContext;
564
-
565
- getDetailsCase(): WorkspaceContext.DetailsCase;
566
-
567
- serializeBinary(): Uint8Array;
568
- toObject(includeInstance?: boolean): WorkspaceContext.AsObject;
569
- static toObject(includeInstance: boolean, msg: WorkspaceContext): WorkspaceContext.AsObject;
570
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
571
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
572
- static serializeBinaryToWriter(message: WorkspaceContext, writer: jspb.BinaryWriter): void;
573
- static deserializeBinary(bytes: Uint8Array): WorkspaceContext;
574
- static deserializeBinaryFromReader(message: WorkspaceContext, reader: jspb.BinaryReader): WorkspaceContext;
575
- }
576
-
577
- export namespace WorkspaceContext {
578
- export type AsObject = {
579
- contextUrl: string,
580
- git?: WorkspaceContext.Git.AsObject,
581
- prebuild?: WorkspaceContext.Prebuild.AsObject,
582
- snapshot?: WorkspaceContext.Snapshot.AsObject,
583
- }
584
-
585
-
586
- export class Git extends jspb.Message {
587
- getNormalizedContextUrl(): string;
588
- setNormalizedContextUrl(value: string): Git;
589
- getCommit(): string;
590
- setCommit(value: string): Git;
591
-
592
- serializeBinary(): Uint8Array;
593
- toObject(includeInstance?: boolean): Git.AsObject;
594
- static toObject(includeInstance: boolean, msg: Git): Git.AsObject;
595
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
596
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
597
- static serializeBinaryToWriter(message: Git, writer: jspb.BinaryWriter): void;
598
- static deserializeBinary(bytes: Uint8Array): Git;
599
- static deserializeBinaryFromReader(message: Git, reader: jspb.BinaryReader): Git;
600
- }
601
-
602
- export namespace Git {
603
- export type AsObject = {
604
- normalizedContextUrl: string,
605
- commit: string,
606
- }
607
- }
608
-
609
- export class Prebuild extends jspb.Message {
610
-
611
- hasOriginalContext(): boolean;
612
- clearOriginalContext(): void;
613
- getOriginalContext(): WorkspaceContext.Git | undefined;
614
- setOriginalContext(value?: WorkspaceContext.Git): Prebuild;
615
- getPrebuildId(): string;
616
- setPrebuildId(value: string): Prebuild;
617
-
618
- serializeBinary(): Uint8Array;
619
- toObject(includeInstance?: boolean): Prebuild.AsObject;
620
- static toObject(includeInstance: boolean, msg: Prebuild): Prebuild.AsObject;
621
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
622
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
623
- static serializeBinaryToWriter(message: Prebuild, writer: jspb.BinaryWriter): void;
624
- static deserializeBinary(bytes: Uint8Array): Prebuild;
625
- static deserializeBinaryFromReader(message: Prebuild, reader: jspb.BinaryReader): Prebuild;
626
- }
627
-
628
- export namespace Prebuild {
629
- export type AsObject = {
630
- originalContext?: WorkspaceContext.Git.AsObject,
631
- prebuildId: string,
632
- }
633
- }
634
-
635
- export class Snapshot extends jspb.Message {
636
- getSnapshotId(): string;
637
- setSnapshotId(value: string): Snapshot;
638
-
639
- serializeBinary(): Uint8Array;
640
- toObject(includeInstance?: boolean): Snapshot.AsObject;
641
- static toObject(includeInstance: boolean, msg: Snapshot): Snapshot.AsObject;
642
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
643
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
644
- static serializeBinaryToWriter(message: Snapshot, writer: jspb.BinaryWriter): void;
645
- static deserializeBinary(bytes: Uint8Array): Snapshot;
646
- static deserializeBinaryFromReader(message: Snapshot, reader: jspb.BinaryReader): Snapshot;
647
- }
648
-
649
- export namespace Snapshot {
650
- export type AsObject = {
651
- snapshotId: string,
652
- }
653
- }
654
-
655
-
656
- export enum DetailsCase {
657
- DETAILS_NOT_SET = 0,
658
- GIT = 2,
659
- PREBUILD = 3,
660
- SNAPSHOT = 4,
661
- }
662
-
663
- }
664
-
665
- export class WorkspaceInstance extends jspb.Message {
666
- getInstanceId(): string;
667
- setInstanceId(value: string): WorkspaceInstance;
668
- getWorkspaceId(): string;
669
- setWorkspaceId(value: string): WorkspaceInstance;
670
-
671
- hasCreatedAt(): boolean;
672
- clearCreatedAt(): void;
673
- getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
674
- setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): WorkspaceInstance;
675
-
676
- hasStatus(): boolean;
677
- clearStatus(): void;
678
- getStatus(): WorkspaceInstanceStatus | undefined;
679
- setStatus(value?: WorkspaceInstanceStatus): WorkspaceInstance;
680
-
681
- serializeBinary(): Uint8Array;
682
- toObject(includeInstance?: boolean): WorkspaceInstance.AsObject;
683
- static toObject(includeInstance: boolean, msg: WorkspaceInstance): WorkspaceInstance.AsObject;
684
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
685
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
686
- static serializeBinaryToWriter(message: WorkspaceInstance, writer: jspb.BinaryWriter): void;
687
- static deserializeBinary(bytes: Uint8Array): WorkspaceInstance;
688
- static deserializeBinaryFromReader(message: WorkspaceInstance, reader: jspb.BinaryReader): WorkspaceInstance;
689
- }
690
-
691
- export namespace WorkspaceInstance {
692
- export type AsObject = {
693
- instanceId: string,
694
- workspaceId: string,
695
- createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
696
- status?: WorkspaceInstanceStatus.AsObject,
697
- }
698
- }
699
-
700
- export class WorkspaceInstanceStatus extends jspb.Message {
701
- getStatusVersion(): number;
702
- setStatusVersion(value: number): WorkspaceInstanceStatus;
703
- getPhase(): WorkspaceInstanceStatus.Phase;
704
- setPhase(value: WorkspaceInstanceStatus.Phase): WorkspaceInstanceStatus;
705
-
706
- hasConditions(): boolean;
707
- clearConditions(): void;
708
- getConditions(): WorkspaceInstanceStatus.Conditions | undefined;
709
- setConditions(value?: WorkspaceInstanceStatus.Conditions): WorkspaceInstanceStatus;
710
- getMessage(): string;
711
- setMessage(value: string): WorkspaceInstanceStatus;
712
- getUrl(): string;
713
- setUrl(value: string): WorkspaceInstanceStatus;
714
- getAdmission(): AdmissionLevel;
715
- setAdmission(value: AdmissionLevel): WorkspaceInstanceStatus;
716
-
717
- serializeBinary(): Uint8Array;
718
- toObject(includeInstance?: boolean): WorkspaceInstanceStatus.AsObject;
719
- static toObject(includeInstance: boolean, msg: WorkspaceInstanceStatus): WorkspaceInstanceStatus.AsObject;
720
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
721
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
722
- static serializeBinaryToWriter(message: WorkspaceInstanceStatus, writer: jspb.BinaryWriter): void;
723
- static deserializeBinary(bytes: Uint8Array): WorkspaceInstanceStatus;
724
- static deserializeBinaryFromReader(message: WorkspaceInstanceStatus, reader: jspb.BinaryReader): WorkspaceInstanceStatus;
725
- }
726
-
727
- export namespace WorkspaceInstanceStatus {
728
- export type AsObject = {
729
- statusVersion: number,
730
- phase: WorkspaceInstanceStatus.Phase,
731
- conditions?: WorkspaceInstanceStatus.Conditions.AsObject,
732
- message: string,
733
- url: string,
734
- admission: AdmissionLevel,
735
- }
736
-
737
-
738
- export class Conditions extends jspb.Message {
739
- getFailed(): string;
740
- setFailed(value: string): Conditions;
741
- getTimeout(): string;
742
- setTimeout(value: string): Conditions;
743
-
744
- hasFirstUserActivity(): boolean;
745
- clearFirstUserActivity(): void;
746
- getFirstUserActivity(): google_protobuf_timestamp_pb.Timestamp | undefined;
747
- setFirstUserActivity(value?: google_protobuf_timestamp_pb.Timestamp): Conditions;
748
-
749
- hasStoppedByRequest(): boolean;
750
- clearStoppedByRequest(): void;
751
- getStoppedByRequest(): boolean | undefined;
752
- setStoppedByRequest(value: boolean): Conditions;
753
-
754
- serializeBinary(): Uint8Array;
755
- toObject(includeInstance?: boolean): Conditions.AsObject;
756
- static toObject(includeInstance: boolean, msg: Conditions): Conditions.AsObject;
757
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
758
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
759
- static serializeBinaryToWriter(message: Conditions, writer: jspb.BinaryWriter): void;
760
- static deserializeBinary(bytes: Uint8Array): Conditions;
761
- static deserializeBinaryFromReader(message: Conditions, reader: jspb.BinaryReader): Conditions;
762
- }
763
-
764
- export namespace Conditions {
765
- export type AsObject = {
766
- failed: string,
767
- timeout: string,
768
- firstUserActivity?: google_protobuf_timestamp_pb.Timestamp.AsObject,
769
- stoppedByRequest?: boolean,
770
- }
771
- }
772
-
773
-
774
- export enum Phase {
775
- PHASE_UNSPECIFIED = 0,
776
- PHASE_PREPARING = 1,
777
- PHASE_IMAGEBUILD = 2,
778
- PHASE_PENDING = 3,
779
- PHASE_CREATING = 4,
780
- PHASE_INITIALIZING = 5,
781
- PHASE_RUNNING = 6,
782
- PHASE_INTERRUPTED = 7,
783
- PHASE_STOPPING = 8,
784
- PHASE_STOPPED = 9,
785
- }
786
-
787
- }
788
-
789
- export class StartWorkspaceSpec extends jspb.Message {
790
-
791
- serializeBinary(): Uint8Array;
792
- toObject(includeInstance?: boolean): StartWorkspaceSpec.AsObject;
793
- static toObject(includeInstance: boolean, msg: StartWorkspaceSpec): StartWorkspaceSpec.AsObject;
794
- static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
795
- static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
796
- static serializeBinaryToWriter(message: StartWorkspaceSpec, writer: jspb.BinaryWriter): void;
797
- static deserializeBinary(bytes: Uint8Array): StartWorkspaceSpec;
798
- static deserializeBinaryFromReader(message: StartWorkspaceSpec, reader: jspb.BinaryReader): StartWorkspaceSpec;
799
- }
800
-
801
- export namespace StartWorkspaceSpec {
802
- export type AsObject = {
803
- }
804
- }
805
-
806
- export enum AdmissionLevel {
807
- ADMISSION_LEVEL_UNSPECIFIED = 0,
808
- ADMISSION_LEVEL_OWNER_ONLY = 1,
809
- ADMISSION_LEVEL_EVERYONE = 2,
6
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
7
+ import { FieldMask, Message, Timestamp } from "@bufbuild/protobuf";
8
+ import { Pagination } from "./pagination_pb.js";
9
+ /**
10
+ * Admission level describes who can access a workspace instance and its ports.
11
+ *
12
+ * @generated from enum gitpod.v1.AdmissionLevel
13
+ */
14
+ export declare enum AdmissionLevel {
15
+ /**
16
+ * @generated from enum value: ADMISSION_LEVEL_UNSPECIFIED = 0;
17
+ */
18
+ UNSPECIFIED = 0,
19
+ /**
20
+ * ADMISSION_LEVEL_OWNER_ONLY means the workspace can only be accessed using the owner token
21
+ *
22
+ * @generated from enum value: ADMISSION_LEVEL_OWNER_ONLY = 1;
23
+ */
24
+ OWNER_ONLY = 1,
25
+ /**
26
+ * ADMISSION_LEVEL_EVERYONE means the workspace (including ports) can be accessed by everyone.
27
+ *
28
+ * @generated from enum value: ADMISSION_LEVEL_EVERYONE = 2;
29
+ */
30
+ EVERYONE = 2
31
+ }
32
+ /**
33
+ * @generated from message gitpod.v1.ListWorkspacesRequest
34
+ */
35
+ export declare class ListWorkspacesRequest extends Message<ListWorkspacesRequest> {
36
+ /**
37
+ * @generated from field: gitpod.v1.Pagination pagination = 1;
38
+ */
39
+ pagination?: Pagination;
40
+ /**
41
+ * @generated from field: google.protobuf.FieldMask field_mask = 2;
42
+ */
43
+ fieldMask?: FieldMask;
44
+ constructor(data?: PartialMessage<ListWorkspacesRequest>);
45
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
46
+ static readonly typeName = "gitpod.v1.ListWorkspacesRequest";
47
+ static readonly fields: FieldList;
48
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListWorkspacesRequest;
49
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListWorkspacesRequest;
50
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListWorkspacesRequest;
51
+ static equals(a: ListWorkspacesRequest | PlainMessage<ListWorkspacesRequest> | undefined, b: ListWorkspacesRequest | PlainMessage<ListWorkspacesRequest> | undefined): boolean;
52
+ }
53
+ /**
54
+ * @generated from message gitpod.v1.ListWorkspacesResponse
55
+ */
56
+ export declare class ListWorkspacesResponse extends Message<ListWorkspacesResponse> {
57
+ /**
58
+ * @generated from field: string next_page_token = 1;
59
+ */
60
+ nextPageToken: string;
61
+ /**
62
+ * @generated from field: repeated gitpod.v1.ListWorkspacesResponse.WorkspaceAndInstance result = 2;
63
+ */
64
+ result: ListWorkspacesResponse_WorkspaceAndInstance[];
65
+ constructor(data?: PartialMessage<ListWorkspacesResponse>);
66
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
67
+ static readonly typeName = "gitpod.v1.ListWorkspacesResponse";
68
+ static readonly fields: FieldList;
69
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListWorkspacesResponse;
70
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListWorkspacesResponse;
71
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListWorkspacesResponse;
72
+ static equals(a: ListWorkspacesResponse | PlainMessage<ListWorkspacesResponse> | undefined, b: ListWorkspacesResponse | PlainMessage<ListWorkspacesResponse> | undefined): boolean;
73
+ }
74
+ /**
75
+ * @generated from message gitpod.v1.ListWorkspacesResponse.WorkspaceAndInstance
76
+ */
77
+ export declare class ListWorkspacesResponse_WorkspaceAndInstance extends Message<ListWorkspacesResponse_WorkspaceAndInstance> {
78
+ /**
79
+ * @generated from field: gitpod.v1.Workspace result = 1;
80
+ */
81
+ result?: Workspace;
82
+ /**
83
+ * @generated from field: gitpod.v1.WorkspaceInstance last_active_instances = 2;
84
+ */
85
+ lastActiveInstances?: WorkspaceInstance;
86
+ constructor(data?: PartialMessage<ListWorkspacesResponse_WorkspaceAndInstance>);
87
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
88
+ static readonly typeName = "gitpod.v1.ListWorkspacesResponse.WorkspaceAndInstance";
89
+ static readonly fields: FieldList;
90
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListWorkspacesResponse_WorkspaceAndInstance;
91
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListWorkspacesResponse_WorkspaceAndInstance;
92
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListWorkspacesResponse_WorkspaceAndInstance;
93
+ static equals(a: ListWorkspacesResponse_WorkspaceAndInstance | PlainMessage<ListWorkspacesResponse_WorkspaceAndInstance> | undefined, b: ListWorkspacesResponse_WorkspaceAndInstance | PlainMessage<ListWorkspacesResponse_WorkspaceAndInstance> | undefined): boolean;
94
+ }
95
+ /**
96
+ * @generated from message gitpod.v1.GetWorkspaceRequest
97
+ */
98
+ export declare class GetWorkspaceRequest extends Message<GetWorkspaceRequest> {
99
+ /**
100
+ * @generated from field: string workspace_id = 1;
101
+ */
102
+ workspaceId: string;
103
+ constructor(data?: PartialMessage<GetWorkspaceRequest>);
104
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
105
+ static readonly typeName = "gitpod.v1.GetWorkspaceRequest";
106
+ static readonly fields: FieldList;
107
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetWorkspaceRequest;
108
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetWorkspaceRequest;
109
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetWorkspaceRequest;
110
+ static equals(a: GetWorkspaceRequest | PlainMessage<GetWorkspaceRequest> | undefined, b: GetWorkspaceRequest | PlainMessage<GetWorkspaceRequest> | undefined): boolean;
111
+ }
112
+ /**
113
+ * @generated from message gitpod.v1.GetWorkspaceResponse
114
+ */
115
+ export declare class GetWorkspaceResponse extends Message<GetWorkspaceResponse> {
116
+ /**
117
+ * @generated from field: gitpod.v1.Workspace result = 1;
118
+ */
119
+ result?: Workspace;
120
+ constructor(data?: PartialMessage<GetWorkspaceResponse>);
121
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
122
+ static readonly typeName = "gitpod.v1.GetWorkspaceResponse";
123
+ static readonly fields: FieldList;
124
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetWorkspaceResponse;
125
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetWorkspaceResponse;
126
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetWorkspaceResponse;
127
+ static equals(a: GetWorkspaceResponse | PlainMessage<GetWorkspaceResponse> | undefined, b: GetWorkspaceResponse | PlainMessage<GetWorkspaceResponse> | undefined): boolean;
128
+ }
129
+ /**
130
+ * @generated from message gitpod.v1.GetOwnerTokenRequest
131
+ */
132
+ export declare class GetOwnerTokenRequest extends Message<GetOwnerTokenRequest> {
133
+ /**
134
+ * @generated from field: string workspace_id = 1;
135
+ */
136
+ workspaceId: string;
137
+ constructor(data?: PartialMessage<GetOwnerTokenRequest>);
138
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
139
+ static readonly typeName = "gitpod.v1.GetOwnerTokenRequest";
140
+ static readonly fields: FieldList;
141
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOwnerTokenRequest;
142
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOwnerTokenRequest;
143
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOwnerTokenRequest;
144
+ static equals(a: GetOwnerTokenRequest | PlainMessage<GetOwnerTokenRequest> | undefined, b: GetOwnerTokenRequest | PlainMessage<GetOwnerTokenRequest> | undefined): boolean;
145
+ }
146
+ /**
147
+ * @generated from message gitpod.v1.GetOwnerTokenResponse
148
+ */
149
+ export declare class GetOwnerTokenResponse extends Message<GetOwnerTokenResponse> {
150
+ /**
151
+ * @generated from field: string token = 1;
152
+ */
153
+ token: string;
154
+ constructor(data?: PartialMessage<GetOwnerTokenResponse>);
155
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
156
+ static readonly typeName = "gitpod.v1.GetOwnerTokenResponse";
157
+ static readonly fields: FieldList;
158
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOwnerTokenResponse;
159
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOwnerTokenResponse;
160
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOwnerTokenResponse;
161
+ static equals(a: GetOwnerTokenResponse | PlainMessage<GetOwnerTokenResponse> | undefined, b: GetOwnerTokenResponse | PlainMessage<GetOwnerTokenResponse> | undefined): boolean;
162
+ }
163
+ /**
164
+ * @generated from message gitpod.v1.CreateAndStartWorkspaceRequest
165
+ */
166
+ export declare class CreateAndStartWorkspaceRequest extends Message<CreateAndStartWorkspaceRequest> {
167
+ /**
168
+ * @generated from field: string idempotency_token = 1;
169
+ */
170
+ idempotencyToken: string;
171
+ /**
172
+ * @generated from oneof gitpod.v1.CreateAndStartWorkspaceRequest.source
173
+ */
174
+ source: {
175
+ /**
176
+ * @generated from field: string context_url = 2;
177
+ */
178
+ value: string;
179
+ case: "contextUrl";
180
+ } | {
181
+ /**
182
+ * @generated from field: string prebuild_id = 3;
183
+ */
184
+ value: string;
185
+ case: "prebuildId";
186
+ } | {
187
+ case: undefined;
188
+ value?: undefined;
189
+ };
190
+ /**
191
+ * @generated from field: gitpod.v1.StartWorkspaceSpec start_spec = 5;
192
+ */
193
+ startSpec?: StartWorkspaceSpec;
194
+ constructor(data?: PartialMessage<CreateAndStartWorkspaceRequest>);
195
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
196
+ static readonly typeName = "gitpod.v1.CreateAndStartWorkspaceRequest";
197
+ static readonly fields: FieldList;
198
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateAndStartWorkspaceRequest;
199
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateAndStartWorkspaceRequest;
200
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateAndStartWorkspaceRequest;
201
+ static equals(a: CreateAndStartWorkspaceRequest | PlainMessage<CreateAndStartWorkspaceRequest> | undefined, b: CreateAndStartWorkspaceRequest | PlainMessage<CreateAndStartWorkspaceRequest> | undefined): boolean;
202
+ }
203
+ /**
204
+ * @generated from message gitpod.v1.CreateAndStartWorkspaceResponse
205
+ */
206
+ export declare class CreateAndStartWorkspaceResponse extends Message<CreateAndStartWorkspaceResponse> {
207
+ /**
208
+ * @generated from field: string workspace_id = 1;
209
+ */
210
+ workspaceId: string;
211
+ constructor(data?: PartialMessage<CreateAndStartWorkspaceResponse>);
212
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
213
+ static readonly typeName = "gitpod.v1.CreateAndStartWorkspaceResponse";
214
+ static readonly fields: FieldList;
215
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateAndStartWorkspaceResponse;
216
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateAndStartWorkspaceResponse;
217
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateAndStartWorkspaceResponse;
218
+ static equals(a: CreateAndStartWorkspaceResponse | PlainMessage<CreateAndStartWorkspaceResponse> | undefined, b: CreateAndStartWorkspaceResponse | PlainMessage<CreateAndStartWorkspaceResponse> | undefined): boolean;
219
+ }
220
+ /**
221
+ * @generated from message gitpod.v1.StartWorkspaceRequest
222
+ */
223
+ export declare class StartWorkspaceRequest extends Message<StartWorkspaceRequest> {
224
+ /**
225
+ * @generated from field: string idempotency_token = 1;
226
+ */
227
+ idempotencyToken: string;
228
+ /**
229
+ * @generated from field: string workspace_id = 2;
230
+ */
231
+ workspaceId: string;
232
+ /**
233
+ * @generated from field: gitpod.v1.StartWorkspaceSpec spec = 3;
234
+ */
235
+ spec?: StartWorkspaceSpec;
236
+ constructor(data?: PartialMessage<StartWorkspaceRequest>);
237
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
238
+ static readonly typeName = "gitpod.v1.StartWorkspaceRequest";
239
+ static readonly fields: FieldList;
240
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StartWorkspaceRequest;
241
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StartWorkspaceRequest;
242
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StartWorkspaceRequest;
243
+ static equals(a: StartWorkspaceRequest | PlainMessage<StartWorkspaceRequest> | undefined, b: StartWorkspaceRequest | PlainMessage<StartWorkspaceRequest> | undefined): boolean;
244
+ }
245
+ /**
246
+ * @generated from message gitpod.v1.StartWorkspaceResponse
247
+ */
248
+ export declare class StartWorkspaceResponse extends Message<StartWorkspaceResponse> {
249
+ /**
250
+ * @generated from field: string instance_id = 1;
251
+ */
252
+ instanceId: string;
253
+ /**
254
+ * @generated from field: string workspace_url = 2;
255
+ */
256
+ workspaceUrl: string;
257
+ constructor(data?: PartialMessage<StartWorkspaceResponse>);
258
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
259
+ static readonly typeName = "gitpod.v1.StartWorkspaceResponse";
260
+ static readonly fields: FieldList;
261
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StartWorkspaceResponse;
262
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StartWorkspaceResponse;
263
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StartWorkspaceResponse;
264
+ static equals(a: StartWorkspaceResponse | PlainMessage<StartWorkspaceResponse> | undefined, b: StartWorkspaceResponse | PlainMessage<StartWorkspaceResponse> | undefined): boolean;
265
+ }
266
+ /**
267
+ * @generated from message gitpod.v1.GetActiveWorkspaceInstanceRequest
268
+ */
269
+ export declare class GetActiveWorkspaceInstanceRequest extends Message<GetActiveWorkspaceInstanceRequest> {
270
+ /**
271
+ * @generated from field: string workspace_id = 1;
272
+ */
273
+ workspaceId: string;
274
+ constructor(data?: PartialMessage<GetActiveWorkspaceInstanceRequest>);
275
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
276
+ static readonly typeName = "gitpod.v1.GetActiveWorkspaceInstanceRequest";
277
+ static readonly fields: FieldList;
278
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetActiveWorkspaceInstanceRequest;
279
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetActiveWorkspaceInstanceRequest;
280
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetActiveWorkspaceInstanceRequest;
281
+ static equals(a: GetActiveWorkspaceInstanceRequest | PlainMessage<GetActiveWorkspaceInstanceRequest> | undefined, b: GetActiveWorkspaceInstanceRequest | PlainMessage<GetActiveWorkspaceInstanceRequest> | undefined): boolean;
282
+ }
283
+ /**
284
+ * @generated from message gitpod.v1.GetActiveWorkspaceInstanceResponse
285
+ */
286
+ export declare class GetActiveWorkspaceInstanceResponse extends Message<GetActiveWorkspaceInstanceResponse> {
287
+ /**
288
+ * @generated from field: gitpod.v1.WorkspaceInstance instance = 1;
289
+ */
290
+ instance?: WorkspaceInstance;
291
+ constructor(data?: PartialMessage<GetActiveWorkspaceInstanceResponse>);
292
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
293
+ static readonly typeName = "gitpod.v1.GetActiveWorkspaceInstanceResponse";
294
+ static readonly fields: FieldList;
295
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetActiveWorkspaceInstanceResponse;
296
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetActiveWorkspaceInstanceResponse;
297
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetActiveWorkspaceInstanceResponse;
298
+ static equals(a: GetActiveWorkspaceInstanceResponse | PlainMessage<GetActiveWorkspaceInstanceResponse> | undefined, b: GetActiveWorkspaceInstanceResponse | PlainMessage<GetActiveWorkspaceInstanceResponse> | undefined): boolean;
299
+ }
300
+ /**
301
+ * @generated from message gitpod.v1.GetWorkspaceInstanceOwnerTokenRequest
302
+ */
303
+ export declare class GetWorkspaceInstanceOwnerTokenRequest extends Message<GetWorkspaceInstanceOwnerTokenRequest> {
304
+ /**
305
+ * @generated from field: string instance_id = 1;
306
+ */
307
+ instanceId: string;
308
+ constructor(data?: PartialMessage<GetWorkspaceInstanceOwnerTokenRequest>);
309
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
310
+ static readonly typeName = "gitpod.v1.GetWorkspaceInstanceOwnerTokenRequest";
311
+ static readonly fields: FieldList;
312
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetWorkspaceInstanceOwnerTokenRequest;
313
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetWorkspaceInstanceOwnerTokenRequest;
314
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetWorkspaceInstanceOwnerTokenRequest;
315
+ static equals(a: GetWorkspaceInstanceOwnerTokenRequest | PlainMessage<GetWorkspaceInstanceOwnerTokenRequest> | undefined, b: GetWorkspaceInstanceOwnerTokenRequest | PlainMessage<GetWorkspaceInstanceOwnerTokenRequest> | undefined): boolean;
316
+ }
317
+ /**
318
+ * @generated from message gitpod.v1.GetWorkspaceInstanceOwnerTokenResponse
319
+ */
320
+ export declare class GetWorkspaceInstanceOwnerTokenResponse extends Message<GetWorkspaceInstanceOwnerTokenResponse> {
321
+ /**
322
+ * @generated from field: string owner_token = 1;
323
+ */
324
+ ownerToken: string;
325
+ constructor(data?: PartialMessage<GetWorkspaceInstanceOwnerTokenResponse>);
326
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
327
+ static readonly typeName = "gitpod.v1.GetWorkspaceInstanceOwnerTokenResponse";
328
+ static readonly fields: FieldList;
329
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetWorkspaceInstanceOwnerTokenResponse;
330
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetWorkspaceInstanceOwnerTokenResponse;
331
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetWorkspaceInstanceOwnerTokenResponse;
332
+ static equals(a: GetWorkspaceInstanceOwnerTokenResponse | PlainMessage<GetWorkspaceInstanceOwnerTokenResponse> | undefined, b: GetWorkspaceInstanceOwnerTokenResponse | PlainMessage<GetWorkspaceInstanceOwnerTokenResponse> | undefined): boolean;
810
333
  }
334
+ /**
335
+ * @generated from message gitpod.v1.ListenToWorkspaceInstanceRequest
336
+ */
337
+ export declare class ListenToWorkspaceInstanceRequest extends Message<ListenToWorkspaceInstanceRequest> {
338
+ /**
339
+ * @generated from field: string instance_id = 1;
340
+ */
341
+ instanceId: string;
342
+ constructor(data?: PartialMessage<ListenToWorkspaceInstanceRequest>);
343
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
344
+ static readonly typeName = "gitpod.v1.ListenToWorkspaceInstanceRequest";
345
+ static readonly fields: FieldList;
346
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListenToWorkspaceInstanceRequest;
347
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListenToWorkspaceInstanceRequest;
348
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListenToWorkspaceInstanceRequest;
349
+ static equals(a: ListenToWorkspaceInstanceRequest | PlainMessage<ListenToWorkspaceInstanceRequest> | undefined, b: ListenToWorkspaceInstanceRequest | PlainMessage<ListenToWorkspaceInstanceRequest> | undefined): boolean;
350
+ }
351
+ /**
352
+ * @generated from message gitpod.v1.ListenToWorkspaceInstanceResponse
353
+ */
354
+ export declare class ListenToWorkspaceInstanceResponse extends Message<ListenToWorkspaceInstanceResponse> {
355
+ /**
356
+ * @generated from field: gitpod.v1.WorkspaceInstanceStatus instance_status = 1;
357
+ */
358
+ instanceStatus?: WorkspaceInstanceStatus;
359
+ constructor(data?: PartialMessage<ListenToWorkspaceInstanceResponse>);
360
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
361
+ static readonly typeName = "gitpod.v1.ListenToWorkspaceInstanceResponse";
362
+ static readonly fields: FieldList;
363
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListenToWorkspaceInstanceResponse;
364
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListenToWorkspaceInstanceResponse;
365
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListenToWorkspaceInstanceResponse;
366
+ static equals(a: ListenToWorkspaceInstanceResponse | PlainMessage<ListenToWorkspaceInstanceResponse> | undefined, b: ListenToWorkspaceInstanceResponse | PlainMessage<ListenToWorkspaceInstanceResponse> | undefined): boolean;
367
+ }
368
+ /**
369
+ * @generated from message gitpod.v1.ListenToImageBuildLogsRequest
370
+ */
371
+ export declare class ListenToImageBuildLogsRequest extends Message<ListenToImageBuildLogsRequest> {
372
+ /**
373
+ * @generated from field: string instance_id = 1;
374
+ */
375
+ instanceId: string;
376
+ constructor(data?: PartialMessage<ListenToImageBuildLogsRequest>);
377
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
378
+ static readonly typeName = "gitpod.v1.ListenToImageBuildLogsRequest";
379
+ static readonly fields: FieldList;
380
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListenToImageBuildLogsRequest;
381
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListenToImageBuildLogsRequest;
382
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListenToImageBuildLogsRequest;
383
+ static equals(a: ListenToImageBuildLogsRequest | PlainMessage<ListenToImageBuildLogsRequest> | undefined, b: ListenToImageBuildLogsRequest | PlainMessage<ListenToImageBuildLogsRequest> | undefined): boolean;
384
+ }
385
+ /**
386
+ * @generated from message gitpod.v1.ListenToImageBuildLogsResponse
387
+ */
388
+ export declare class ListenToImageBuildLogsResponse extends Message<ListenToImageBuildLogsResponse> {
389
+ /**
390
+ * @generated from field: string line = 1;
391
+ */
392
+ line: string;
393
+ constructor(data?: PartialMessage<ListenToImageBuildLogsResponse>);
394
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
395
+ static readonly typeName = "gitpod.v1.ListenToImageBuildLogsResponse";
396
+ static readonly fields: FieldList;
397
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListenToImageBuildLogsResponse;
398
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListenToImageBuildLogsResponse;
399
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListenToImageBuildLogsResponse;
400
+ static equals(a: ListenToImageBuildLogsResponse | PlainMessage<ListenToImageBuildLogsResponse> | undefined, b: ListenToImageBuildLogsResponse | PlainMessage<ListenToImageBuildLogsResponse> | undefined): boolean;
401
+ }
402
+ /**
403
+ * @generated from message gitpod.v1.StopWorkspaceRequest
404
+ */
405
+ export declare class StopWorkspaceRequest extends Message<StopWorkspaceRequest> {
406
+ /**
407
+ * @generated from field: string idempotency_token = 1;
408
+ */
409
+ idempotencyToken: string;
410
+ /**
411
+ * @generated from field: string workspace_id = 2;
412
+ */
413
+ workspaceId: string;
414
+ constructor(data?: PartialMessage<StopWorkspaceRequest>);
415
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
416
+ static readonly typeName = "gitpod.v1.StopWorkspaceRequest";
417
+ static readonly fields: FieldList;
418
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StopWorkspaceRequest;
419
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StopWorkspaceRequest;
420
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StopWorkspaceRequest;
421
+ static equals(a: StopWorkspaceRequest | PlainMessage<StopWorkspaceRequest> | undefined, b: StopWorkspaceRequest | PlainMessage<StopWorkspaceRequest> | undefined): boolean;
422
+ }
423
+ /**
424
+ * @generated from message gitpod.v1.StopWorkspaceResponse
425
+ */
426
+ export declare class StopWorkspaceResponse extends Message<StopWorkspaceResponse> {
427
+ constructor(data?: PartialMessage<StopWorkspaceResponse>);
428
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
429
+ static readonly typeName = "gitpod.v1.StopWorkspaceResponse";
430
+ static readonly fields: FieldList;
431
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StopWorkspaceResponse;
432
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StopWorkspaceResponse;
433
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StopWorkspaceResponse;
434
+ static equals(a: StopWorkspaceResponse | PlainMessage<StopWorkspaceResponse> | undefined, b: StopWorkspaceResponse | PlainMessage<StopWorkspaceResponse> | undefined): boolean;
435
+ }
436
+ /**
437
+ * Workspace describes a single workspace
438
+ *
439
+ * @generated from message gitpod.v1.Workspace
440
+ */
441
+ export declare class Workspace extends Message<Workspace> {
442
+ /**
443
+ * workspace_id is the ID of the workspace
444
+ *
445
+ * @generated from field: string workspace_id = 1;
446
+ */
447
+ workspaceId: string;
448
+ /**
449
+ * owner_id is the ID of the user who created this workspace
450
+ *
451
+ * @generated from field: string owner_id = 2;
452
+ */
453
+ ownerId: string;
454
+ /**
455
+ * project_id is the ID of the project which this workspace belongs to
456
+ *
457
+ * @generated from field: string project_id = 3;
458
+ */
459
+ projectId: string;
460
+ /**
461
+ * context reports the original context the workspace was created from
462
+ *
463
+ * @generated from field: gitpod.v1.WorkspaceContext context = 4;
464
+ */
465
+ context?: WorkspaceContext;
466
+ /**
467
+ * description is a human readable description of the workspace
468
+ *
469
+ * @generated from field: string description = 5;
470
+ */
471
+ description: string;
472
+ constructor(data?: PartialMessage<Workspace>);
473
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
474
+ static readonly typeName = "gitpod.v1.Workspace";
475
+ static readonly fields: FieldList;
476
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Workspace;
477
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Workspace;
478
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Workspace;
479
+ static equals(a: Workspace | PlainMessage<Workspace> | undefined, b: Workspace | PlainMessage<Workspace> | undefined): boolean;
480
+ }
481
+ /**
482
+ * WorkspaceContext describes the context a workspace was created from
483
+ *
484
+ * @generated from message gitpod.v1.WorkspaceContext
485
+ */
486
+ export declare class WorkspaceContext extends Message<WorkspaceContext> {
487
+ /**
488
+ * All workspace context originates from a URL - this is the context URL
489
+ * which led to the creation of a workspace.
490
+ *
491
+ * @generated from field: string context_url = 1;
492
+ */
493
+ contextUrl: string;
494
+ /**
495
+ * @generated from oneof gitpod.v1.WorkspaceContext.details
496
+ */
497
+ details: {
498
+ /**
499
+ * @generated from field: gitpod.v1.WorkspaceContext.Git git = 2;
500
+ */
501
+ value: WorkspaceContext_Git;
502
+ case: "git";
503
+ } | {
504
+ /**
505
+ * @generated from field: gitpod.v1.WorkspaceContext.Prebuild prebuild = 3;
506
+ */
507
+ value: WorkspaceContext_Prebuild;
508
+ case: "prebuild";
509
+ } | {
510
+ /**
511
+ * @generated from field: gitpod.v1.WorkspaceContext.Snapshot snapshot = 4;
512
+ */
513
+ value: WorkspaceContext_Snapshot;
514
+ case: "snapshot";
515
+ } | {
516
+ case: undefined;
517
+ value?: undefined;
518
+ };
519
+ constructor(data?: PartialMessage<WorkspaceContext>);
520
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
521
+ static readonly typeName = "gitpod.v1.WorkspaceContext";
522
+ static readonly fields: FieldList;
523
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WorkspaceContext;
524
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WorkspaceContext;
525
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WorkspaceContext;
526
+ static equals(a: WorkspaceContext | PlainMessage<WorkspaceContext> | undefined, b: WorkspaceContext | PlainMessage<WorkspaceContext> | undefined): boolean;
527
+ }
528
+ /**
529
+ * Explicit Git context
530
+ *
531
+ * @generated from message gitpod.v1.WorkspaceContext.Git
532
+ */
533
+ export declare class WorkspaceContext_Git extends Message<WorkspaceContext_Git> {
534
+ /**
535
+ * @generated from field: string normalized_context_url = 1;
536
+ */
537
+ normalizedContextUrl: string;
538
+ /**
539
+ * @generated from field: string commit = 2;
540
+ */
541
+ commit: string;
542
+ constructor(data?: PartialMessage<WorkspaceContext_Git>);
543
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
544
+ static readonly typeName = "gitpod.v1.WorkspaceContext.Git";
545
+ static readonly fields: FieldList;
546
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WorkspaceContext_Git;
547
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WorkspaceContext_Git;
548
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WorkspaceContext_Git;
549
+ static equals(a: WorkspaceContext_Git | PlainMessage<WorkspaceContext_Git> | undefined, b: WorkspaceContext_Git | PlainMessage<WorkspaceContext_Git> | undefined): boolean;
550
+ }
551
+ /**
552
+ * Workspace was created from a prebuild
553
+ *
554
+ * @generated from message gitpod.v1.WorkspaceContext.Prebuild
555
+ */
556
+ export declare class WorkspaceContext_Prebuild extends Message<WorkspaceContext_Prebuild> {
557
+ /**
558
+ * original_context is the Git context which lead to the selection
559
+ * of a prebuild.
560
+ *
561
+ * @generated from field: gitpod.v1.WorkspaceContext.Git original_context = 1;
562
+ */
563
+ originalContext?: WorkspaceContext_Git;
564
+ /**
565
+ * prebuild_id is the ID of the prebuild which was used to create this workspace
566
+ *
567
+ * @generated from field: string prebuild_id = 2;
568
+ */
569
+ prebuildId: string;
570
+ constructor(data?: PartialMessage<WorkspaceContext_Prebuild>);
571
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
572
+ static readonly typeName = "gitpod.v1.WorkspaceContext.Prebuild";
573
+ static readonly fields: FieldList;
574
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WorkspaceContext_Prebuild;
575
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WorkspaceContext_Prebuild;
576
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WorkspaceContext_Prebuild;
577
+ static equals(a: WorkspaceContext_Prebuild | PlainMessage<WorkspaceContext_Prebuild> | undefined, b: WorkspaceContext_Prebuild | PlainMessage<WorkspaceContext_Prebuild> | undefined): boolean;
578
+ }
579
+ /**
580
+ * Snapshot context points to the snapshot which the workspace was created from
581
+ *
582
+ * @generated from message gitpod.v1.WorkspaceContext.Snapshot
583
+ */
584
+ export declare class WorkspaceContext_Snapshot extends Message<WorkspaceContext_Snapshot> {
585
+ /**
586
+ * @generated from field: string snapshot_id = 1;
587
+ */
588
+ snapshotId: string;
589
+ constructor(data?: PartialMessage<WorkspaceContext_Snapshot>);
590
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
591
+ static readonly typeName = "gitpod.v1.WorkspaceContext.Snapshot";
592
+ static readonly fields: FieldList;
593
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WorkspaceContext_Snapshot;
594
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WorkspaceContext_Snapshot;
595
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WorkspaceContext_Snapshot;
596
+ static equals(a: WorkspaceContext_Snapshot | PlainMessage<WorkspaceContext_Snapshot> | undefined, b: WorkspaceContext_Snapshot | PlainMessage<WorkspaceContext_Snapshot> | undefined): boolean;
597
+ }
598
+ /**
599
+ * WorkspaceInstance describes a single workspace instance
600
+ *
601
+ * @generated from message gitpod.v1.WorkspaceInstance
602
+ */
603
+ export declare class WorkspaceInstance extends Message<WorkspaceInstance> {
604
+ /**
605
+ * Instance ID is the unique identifier of the workspace instance
606
+ *
607
+ * @generated from field: string instance_id = 1;
608
+ */
609
+ instanceId: string;
610
+ /**
611
+ * Worksapce ID is the unique identifier of the workspace this instance belongs to
612
+ *
613
+ * @generated from field: string workspace_id = 2;
614
+ */
615
+ workspaceId: string;
616
+ /**
617
+ * @generated from field: google.protobuf.Timestamp created_at = 3;
618
+ */
619
+ createdAt?: Timestamp;
620
+ /**
621
+ * @generated from field: gitpod.v1.WorkspaceInstanceStatus status = 4;
622
+ */
623
+ status?: WorkspaceInstanceStatus;
624
+ constructor(data?: PartialMessage<WorkspaceInstance>);
625
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
626
+ static readonly typeName = "gitpod.v1.WorkspaceInstance";
627
+ static readonly fields: FieldList;
628
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WorkspaceInstance;
629
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WorkspaceInstance;
630
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WorkspaceInstance;
631
+ static equals(a: WorkspaceInstance | PlainMessage<WorkspaceInstance> | undefined, b: WorkspaceInstance | PlainMessage<WorkspaceInstance> | undefined): boolean;
632
+ }
633
+ /**
634
+ * WorkspaceStatus describes a workspace status
635
+ *
636
+ * @generated from message gitpod.v1.WorkspaceInstanceStatus
637
+ */
638
+ export declare class WorkspaceInstanceStatus extends Message<WorkspaceInstanceStatus> {
639
+ /**
640
+ * version of the status update. Workspace instances themselves are unversioned,
641
+ * but their statuus has different versions.
642
+ * The value of this field has no semantic meaning (e.g. don't interpret it as
643
+ * as a timestemp), but it can be used to impose a partial order.
644
+ * If a.status_version < b.status_version then a was the status before b.
645
+ *
646
+ * @generated from field: uint64 status_version = 1;
647
+ */
648
+ statusVersion: bigint;
649
+ /**
650
+ * the phase of a workspace is a simple, high-level summary of where the workspace instance is in its lifecycle
651
+ *
652
+ * @generated from field: gitpod.v1.WorkspaceInstanceStatus.Phase phase = 2;
653
+ */
654
+ phase: WorkspaceInstanceStatus_Phase;
655
+ /**
656
+ * conditions detail the current state of the workspace instance
657
+ *
658
+ * @generated from field: gitpod.v1.WorkspaceInstanceStatus.Conditions conditions = 3;
659
+ */
660
+ conditions?: WorkspaceInstanceStatus_Conditions;
661
+ /**
662
+ * message is an optional human-readable message detailing the current phase
663
+ *
664
+ * @generated from field: string message = 4;
665
+ */
666
+ message: string;
667
+ /**
668
+ * URL contains the endpoint at which the workspace instance is available
669
+ *
670
+ * @generated from field: string url = 5;
671
+ */
672
+ url: string;
673
+ /**
674
+ * Admission describes who can access a workspace instance and its ports.
675
+ *
676
+ * @generated from field: gitpod.v1.AdmissionLevel admission = 6;
677
+ */
678
+ admission: AdmissionLevel;
679
+ constructor(data?: PartialMessage<WorkspaceInstanceStatus>);
680
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
681
+ static readonly typeName = "gitpod.v1.WorkspaceInstanceStatus";
682
+ static readonly fields: FieldList;
683
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WorkspaceInstanceStatus;
684
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WorkspaceInstanceStatus;
685
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WorkspaceInstanceStatus;
686
+ static equals(a: WorkspaceInstanceStatus | PlainMessage<WorkspaceInstanceStatus> | undefined, b: WorkspaceInstanceStatus | PlainMessage<WorkspaceInstanceStatus> | undefined): boolean;
687
+ }
688
+ /**
689
+ * Phase is a simple, high-level summary of where the workspace instance is in its lifecycle.
690
+ * The phase is not intended to be a comprehensive rollup of observations of the workspace state,
691
+ * nor is it intended to be a comprehensive state machine.
692
+ * (based on https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-phase)
693
+ *
694
+ * @generated from enum gitpod.v1.WorkspaceInstanceStatus.Phase
695
+ */
696
+ export declare enum WorkspaceInstanceStatus_Phase {
697
+ /**
698
+ * Unknown indicates an issue within the workspace manager in that it cannot determine the actual phase of
699
+ * a workspace. This phase is usually accompanied by an error.
700
+ *
701
+ * @generated from enum value: PHASE_UNSPECIFIED = 0;
702
+ */
703
+ UNSPECIFIED = 0,
704
+ /**
705
+ * Preparing means that we haven't actually started the workspace instance just yet, but rather
706
+ * are still preparing for launch.
707
+ *
708
+ * @generated from enum value: PHASE_PREPARING = 1;
709
+ */
710
+ PREPARING = 1,
711
+ /**
712
+ * ImageBuild indicates that there's an image build running for this workspace.
713
+ *
714
+ * @generated from enum value: PHASE_IMAGEBUILD = 2;
715
+ */
716
+ IMAGEBUILD = 2,
717
+ /**
718
+ * Pending means the workspace does not yet consume resources in the cluster, but rather is looking for
719
+ * some space within the cluster. If for example the cluster needs to scale up to accomodate the
720
+ * workspace, the workspace will be in Pending state until that happened.
721
+ *
722
+ * @generated from enum value: PHASE_PENDING = 3;
723
+ */
724
+ PENDING = 3,
725
+ /**
726
+ * Creating means the workspace is currently being created. That includes downloading the images required
727
+ * to run the workspace over the network. The time spent in this phase varies widely and depends on the current
728
+ * network speed, image size and cache states.
729
+ *
730
+ * @generated from enum value: PHASE_CREATING = 4;
731
+ */
732
+ CREATING = 4,
733
+ /**
734
+ * Initializing is the phase in which the workspace is executing the appropriate workspace initializer (e.g. Git
735
+ * clone or backup download). After this phase one can expect the workspace to either be Running or Failed.
736
+ *
737
+ * @generated from enum value: PHASE_INITIALIZING = 5;
738
+ */
739
+ INITIALIZING = 5,
740
+ /**
741
+ * Running means the workspace is able to actively perform work, either by serving a user through Theia,
742
+ * or as a headless workspace.
743
+ *
744
+ * @generated from enum value: PHASE_RUNNING = 6;
745
+ */
746
+ RUNNING = 6,
747
+ /**
748
+ * Interrupted is an exceptional state where the container should be running but is temporarily unavailable.
749
+ * When in this state, we expect it to become running or stopping anytime soon.
750
+ *
751
+ * @generated from enum value: PHASE_INTERRUPTED = 7;
752
+ */
753
+ INTERRUPTED = 7,
754
+ /**
755
+ * Stopping means that the workspace is currently shutting down. It could go to stopped every moment.
756
+ *
757
+ * @generated from enum value: PHASE_STOPPING = 8;
758
+ */
759
+ STOPPING = 8,
760
+ /**
761
+ * Stopped means the workspace ended regularly because it was shut down.
762
+ *
763
+ * @generated from enum value: PHASE_STOPPED = 9;
764
+ */
765
+ STOPPED = 9
766
+ }
767
+ /**
768
+ * Conditions gives more detailed information as to the state of the workspace. Which condition actually
769
+ * has a value depends on the phase the workspace is in.
770
+ *
771
+ * @generated from message gitpod.v1.WorkspaceInstanceStatus.Conditions
772
+ */
773
+ export declare class WorkspaceInstanceStatus_Conditions extends Message<WorkspaceInstanceStatus_Conditions> {
774
+ /**
775
+ * failed contains the reason the workspace failed to operate. If this field is empty, the workspace has not failed.
776
+ * This field is filled exclusively when caused by system errors.
777
+ *
778
+ * @generated from field: string failed = 1;
779
+ */
780
+ failed: string;
781
+ /**
782
+ * timeout contains the reason the workspace has timed out. If this field is empty, the workspace has not timed out.
783
+ *
784
+ * @generated from field: string timeout = 2;
785
+ */
786
+ timeout: string;
787
+ /**
788
+ * first_user_activity is the time when MarkActive was first called on the workspace
789
+ *
790
+ * @generated from field: google.protobuf.Timestamp first_user_activity = 9;
791
+ */
792
+ firstUserActivity?: Timestamp;
793
+ /**
794
+ * stopped_by_request is true if the workspace was stopped using a StopWorkspace call
795
+ *
796
+ * @generated from field: optional bool stopped_by_request = 11;
797
+ */
798
+ stoppedByRequest?: boolean;
799
+ constructor(data?: PartialMessage<WorkspaceInstanceStatus_Conditions>);
800
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
801
+ static readonly typeName = "gitpod.v1.WorkspaceInstanceStatus.Conditions";
802
+ static readonly fields: FieldList;
803
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WorkspaceInstanceStatus_Conditions;
804
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WorkspaceInstanceStatus_Conditions;
805
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WorkspaceInstanceStatus_Conditions;
806
+ static equals(a: WorkspaceInstanceStatus_Conditions | PlainMessage<WorkspaceInstanceStatus_Conditions> | undefined, b: WorkspaceInstanceStatus_Conditions | PlainMessage<WorkspaceInstanceStatus_Conditions> | undefined): boolean;
807
+ }
808
+ /**
809
+ * StartWorkspaceSpec influences the workspace start
810
+ *
811
+ * future per-workspace-start fields, e.g. region
812
+ *
813
+ * @generated from message gitpod.v1.StartWorkspaceSpec
814
+ */
815
+ export declare class StartWorkspaceSpec extends Message<StartWorkspaceSpec> {
816
+ constructor(data?: PartialMessage<StartWorkspaceSpec>);
817
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
818
+ static readonly typeName = "gitpod.v1.StartWorkspaceSpec";
819
+ static readonly fields: FieldList;
820
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StartWorkspaceSpec;
821
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StartWorkspaceSpec;
822
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StartWorkspaceSpec;
823
+ static equals(a: StartWorkspaceSpec | PlainMessage<StartWorkspaceSpec> | undefined, b: StartWorkspaceSpec | PlainMessage<StartWorkspaceSpec> | undefined): boolean;
824
+ }
825
+ //# sourceMappingURL=workspaces_pb.d.ts.map