@norskvideo/norsk-api 1.0.345 → 1.0.347

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.
@@ -1,5 +1,103 @@
1
1
  import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
2
- import { Message } from "@bufbuild/protobuf";
2
+ import { Message, Timestamp } from "@bufbuild/protobuf";
3
+ /**
4
+ * @generated from enum norsk.api.common.Architecture
5
+ */
6
+ export declare enum Architecture {
7
+ /**
8
+ * @generated from enum value: X86_64 = 0;
9
+ */
10
+ X86_64 = 0,
11
+ /**
12
+ * @generated from enum value: AARCH_64 = 1;
13
+ */
14
+ AARCH_64 = 1
15
+ }
16
+ /**
17
+ * @generated from enum norsk.api.common.ProtocolFamily
18
+ */
19
+ export declare enum ProtocolFamily {
20
+ /**
21
+ * @generated from enum value: ANY = 0;
22
+ */
23
+ ANY = 0,
24
+ /**
25
+ * @generated from enum value: UDP = 1;
26
+ */
27
+ UDP = 1,
28
+ /**
29
+ * @generated from enum value: TCP = 2;
30
+ */
31
+ TCP = 2
32
+ }
33
+ /**
34
+ * @generated from message norsk.api.common.OptionalInt
35
+ */
36
+ export declare class OptionalInt extends Message<OptionalInt> {
37
+ /**
38
+ * @generated from field: uint32 value = 1;
39
+ */
40
+ value: number;
41
+ constructor(data?: PartialMessage<OptionalInt>);
42
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
43
+ static readonly typeName = "norsk.api.common.OptionalInt";
44
+ static readonly fields: FieldList;
45
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OptionalInt;
46
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OptionalInt;
47
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OptionalInt;
48
+ static equals(a: OptionalInt | PlainMessage<OptionalInt> | undefined, b: OptionalInt | PlainMessage<OptionalInt> | undefined): boolean;
49
+ }
50
+ /**
51
+ * @generated from message norsk.api.common.OptionalInt64
52
+ */
53
+ export declare class OptionalInt64 extends Message<OptionalInt64> {
54
+ /**
55
+ * @generated from field: uint64 value = 1;
56
+ */
57
+ value: bigint;
58
+ constructor(data?: PartialMessage<OptionalInt64>);
59
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
60
+ static readonly typeName = "norsk.api.common.OptionalInt64";
61
+ static readonly fields: FieldList;
62
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OptionalInt64;
63
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OptionalInt64;
64
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OptionalInt64;
65
+ static equals(a: OptionalInt64 | PlainMessage<OptionalInt64> | undefined, b: OptionalInt64 | PlainMessage<OptionalInt64> | undefined): boolean;
66
+ }
67
+ /**
68
+ * @generated from message norsk.api.common.OptionalBool
69
+ */
70
+ export declare class OptionalBool extends Message<OptionalBool> {
71
+ /**
72
+ * @generated from field: bool value = 1;
73
+ */
74
+ value: boolean;
75
+ constructor(data?: PartialMessage<OptionalBool>);
76
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
77
+ static readonly typeName = "norsk.api.common.OptionalBool";
78
+ static readonly fields: FieldList;
79
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OptionalBool;
80
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OptionalBool;
81
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OptionalBool;
82
+ static equals(a: OptionalBool | PlainMessage<OptionalBool> | undefined, b: OptionalBool | PlainMessage<OptionalBool> | undefined): boolean;
83
+ }
84
+ /**
85
+ * @generated from message norsk.api.common.OptionalString
86
+ */
87
+ export declare class OptionalString extends Message<OptionalString> {
88
+ /**
89
+ * @generated from field: string value = 1;
90
+ */
91
+ value: string;
92
+ constructor(data?: PartialMessage<OptionalString>);
93
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
94
+ static readonly typeName = "norsk.api.common.OptionalString";
95
+ static readonly fields: FieldList;
96
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OptionalString;
97
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OptionalString;
98
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OptionalString;
99
+ static equals(a: OptionalString | PlainMessage<OptionalString> | undefined, b: OptionalString | PlainMessage<OptionalString> | undefined): boolean;
100
+ }
3
101
  /**
4
102
  * `Version` gives version information about the currently running Norsk release
5
103
  *
@@ -123,6 +221,325 @@ export declare class CurrentLoad extends Message<CurrentLoad> {
123
221
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CurrentLoad;
124
222
  static equals(a: CurrentLoad | PlainMessage<CurrentLoad> | undefined, b: CurrentLoad | PlainMessage<CurrentLoad> | undefined): boolean;
125
223
  }
224
+ /**
225
+ * @generated from message norsk.api.common.AwsMetadata
226
+ */
227
+ export declare class AwsMetadata extends Message<AwsMetadata> {
228
+ /**
229
+ * @generated from field: string instance_type = 1;
230
+ */
231
+ instanceType: string;
232
+ /**
233
+ * @generated from field: string region = 2;
234
+ */
235
+ region: string;
236
+ /**
237
+ * @generated from field: norsk.api.common.Architecture architecture = 3;
238
+ */
239
+ architecture: Architecture;
240
+ constructor(data?: PartialMessage<AwsMetadata>);
241
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
242
+ static readonly typeName = "norsk.api.common.AwsMetadata";
243
+ static readonly fields: FieldList;
244
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AwsMetadata;
245
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AwsMetadata;
246
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AwsMetadata;
247
+ static equals(a: AwsMetadata | PlainMessage<AwsMetadata> | undefined, b: AwsMetadata | PlainMessage<AwsMetadata> | undefined): boolean;
248
+ }
249
+ /**
250
+ * @generated from message norsk.api.common.OciMetadata
251
+ */
252
+ export declare class OciMetadata extends Message<OciMetadata> {
253
+ constructor(data?: PartialMessage<OciMetadata>);
254
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
255
+ static readonly typeName = "norsk.api.common.OciMetadata";
256
+ static readonly fields: FieldList;
257
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OciMetadata;
258
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OciMetadata;
259
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OciMetadata;
260
+ static equals(a: OciMetadata | PlainMessage<OciMetadata> | undefined, b: OciMetadata | PlainMessage<OciMetadata> | undefined): boolean;
261
+ }
262
+ /**
263
+ * @generated from message norsk.api.common.TestMetadata
264
+ */
265
+ export declare class TestMetadata extends Message<TestMetadata> {
266
+ constructor(data?: PartialMessage<TestMetadata>);
267
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
268
+ static readonly typeName = "norsk.api.common.TestMetadata";
269
+ static readonly fields: FieldList;
270
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TestMetadata;
271
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TestMetadata;
272
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TestMetadata;
273
+ static equals(a: TestMetadata | PlainMessage<TestMetadata> | undefined, b: TestMetadata | PlainMessage<TestMetadata> | undefined): boolean;
274
+ }
275
+ /**
276
+ * @generated from message norsk.api.common.ProviderMetadata
277
+ */
278
+ export declare class ProviderMetadata extends Message<ProviderMetadata> {
279
+ /**
280
+ * @generated from oneof norsk.api.common.ProviderMetadata.metadata
281
+ */
282
+ metadata: {
283
+ /**
284
+ * @generated from field: norsk.api.common.AwsMetadata aws = 1;
285
+ */
286
+ value: AwsMetadata;
287
+ case: "aws";
288
+ } | {
289
+ /**
290
+ * @generated from field: norsk.api.common.OciMetadata oci = 2;
291
+ */
292
+ value: OciMetadata;
293
+ case: "oci";
294
+ } | {
295
+ /**
296
+ * @generated from field: norsk.api.common.TestMetadata test = 3;
297
+ */
298
+ value: TestMetadata;
299
+ case: "test";
300
+ } | {
301
+ case: undefined;
302
+ value?: undefined;
303
+ };
304
+ constructor(data?: PartialMessage<ProviderMetadata>);
305
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
306
+ static readonly typeName = "norsk.api.common.ProviderMetadata";
307
+ static readonly fields: FieldList;
308
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ProviderMetadata;
309
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ProviderMetadata;
310
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ProviderMetadata;
311
+ static equals(a: ProviderMetadata | PlainMessage<ProviderMetadata> | undefined, b: ProviderMetadata | PlainMessage<ProviderMetadata> | undefined): boolean;
312
+ }
313
+ /**
314
+ * @generated from message norsk.api.common.NodeMetadata
315
+ */
316
+ export declare class NodeMetadata extends Message<NodeMetadata> {
317
+ /**
318
+ * @generated from field: norsk.api.common.NodeId node_id = 1;
319
+ */
320
+ nodeId?: NodeId;
321
+ /**
322
+ * @generated from field: map<string, string> tags = 2;
323
+ */
324
+ tags: {
325
+ [key: string]: string;
326
+ };
327
+ /**
328
+ * @generated from field: google.protobuf.Timestamp created_at = 3;
329
+ */
330
+ createdAt?: Timestamp;
331
+ /**
332
+ * @generated from field: norsk.api.common.ProviderMetadata provider_metadata = 4;
333
+ */
334
+ providerMetadata?: ProviderMetadata;
335
+ constructor(data?: PartialMessage<NodeMetadata>);
336
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
337
+ static readonly typeName = "norsk.api.common.NodeMetadata";
338
+ static readonly fields: FieldList;
339
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): NodeMetadata;
340
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): NodeMetadata;
341
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): NodeMetadata;
342
+ static equals(a: NodeMetadata | PlainMessage<NodeMetadata> | undefined, b: NodeMetadata | PlainMessage<NodeMetadata> | undefined): boolean;
343
+ }
344
+ /**
345
+ * @generated from message norsk.api.common.RunningAwsMetadata
346
+ */
347
+ export declare class RunningAwsMetadata extends Message<RunningAwsMetadata> {
348
+ /**
349
+ * @generated from field: string instance_id = 1;
350
+ */
351
+ instanceId: string;
352
+ constructor(data?: PartialMessage<RunningAwsMetadata>);
353
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
354
+ static readonly typeName = "norsk.api.common.RunningAwsMetadata";
355
+ static readonly fields: FieldList;
356
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RunningAwsMetadata;
357
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RunningAwsMetadata;
358
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RunningAwsMetadata;
359
+ static equals(a: RunningAwsMetadata | PlainMessage<RunningAwsMetadata> | undefined, b: RunningAwsMetadata | PlainMessage<RunningAwsMetadata> | undefined): boolean;
360
+ }
361
+ /**
362
+ * @generated from message norsk.api.common.RunningOciMetadata
363
+ */
364
+ export declare class RunningOciMetadata extends Message<RunningOciMetadata> {
365
+ constructor(data?: PartialMessage<RunningOciMetadata>);
366
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
367
+ static readonly typeName = "norsk.api.common.RunningOciMetadata";
368
+ static readonly fields: FieldList;
369
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RunningOciMetadata;
370
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RunningOciMetadata;
371
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RunningOciMetadata;
372
+ static equals(a: RunningOciMetadata | PlainMessage<RunningOciMetadata> | undefined, b: RunningOciMetadata | PlainMessage<RunningOciMetadata> | undefined): boolean;
373
+ }
374
+ /**
375
+ * @generated from message norsk.api.common.RunningTestMetadata
376
+ */
377
+ export declare class RunningTestMetadata extends Message<RunningTestMetadata> {
378
+ constructor(data?: PartialMessage<RunningTestMetadata>);
379
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
380
+ static readonly typeName = "norsk.api.common.RunningTestMetadata";
381
+ static readonly fields: FieldList;
382
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RunningTestMetadata;
383
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RunningTestMetadata;
384
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RunningTestMetadata;
385
+ static equals(a: RunningTestMetadata | PlainMessage<RunningTestMetadata> | undefined, b: RunningTestMetadata | PlainMessage<RunningTestMetadata> | undefined): boolean;
386
+ }
387
+ /**
388
+ * @generated from message norsk.api.common.RunningNodeProviderMetadata
389
+ */
390
+ export declare class RunningNodeProviderMetadata extends Message<RunningNodeProviderMetadata> {
391
+ /**
392
+ * @generated from oneof norsk.api.common.RunningNodeProviderMetadata.instance
393
+ */
394
+ instance: {
395
+ /**
396
+ * @generated from field: norsk.api.common.RunningAwsMetadata aws = 1;
397
+ */
398
+ value: RunningAwsMetadata;
399
+ case: "aws";
400
+ } | {
401
+ /**
402
+ * @generated from field: norsk.api.common.RunningOciMetadata oci = 2;
403
+ */
404
+ value: RunningOciMetadata;
405
+ case: "oci";
406
+ } | {
407
+ /**
408
+ * @generated from field: norsk.api.common.RunningTestMetadata test = 3;
409
+ */
410
+ value: RunningTestMetadata;
411
+ case: "test";
412
+ } | {
413
+ case: undefined;
414
+ value?: undefined;
415
+ };
416
+ constructor(data?: PartialMessage<RunningNodeProviderMetadata>);
417
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
418
+ static readonly typeName = "norsk.api.common.RunningNodeProviderMetadata";
419
+ static readonly fields: FieldList;
420
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RunningNodeProviderMetadata;
421
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RunningNodeProviderMetadata;
422
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RunningNodeProviderMetadata;
423
+ static equals(a: RunningNodeProviderMetadata | PlainMessage<RunningNodeProviderMetadata> | undefined, b: RunningNodeProviderMetadata | PlainMessage<RunningNodeProviderMetadata> | undefined): boolean;
424
+ }
425
+ /**
426
+ * @generated from message norsk.api.common.RunningNodeMetadata
427
+ */
428
+ export declare class RunningNodeMetadata extends Message<RunningNodeMetadata> {
429
+ /**
430
+ * @generated from field: string public_dns_name = 1;
431
+ */
432
+ publicDnsName: string;
433
+ /**
434
+ * @generated from field: string private_dns_name = 2;
435
+ */
436
+ privateDnsName: string;
437
+ /**
438
+ * @generated from field: string private_ip_address = 3;
439
+ */
440
+ privateIpAddress: string;
441
+ /**
442
+ * @generated from field: norsk.api.common.RunningNodeProviderMetadata provider_metadata = 4;
443
+ */
444
+ providerMetadata?: RunningNodeProviderMetadata;
445
+ constructor(data?: PartialMessage<RunningNodeMetadata>);
446
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
447
+ static readonly typeName = "norsk.api.common.RunningNodeMetadata";
448
+ static readonly fields: FieldList;
449
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RunningNodeMetadata;
450
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RunningNodeMetadata;
451
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RunningNodeMetadata;
452
+ static equals(a: RunningNodeMetadata | PlainMessage<RunningNodeMetadata> | undefined, b: RunningNodeMetadata | PlainMessage<RunningNodeMetadata> | undefined): boolean;
453
+ }
454
+ /**
455
+ * @generated from message norsk.api.common.NodeId
456
+ */
457
+ export declare class NodeId extends Message<NodeId> {
458
+ /**
459
+ * @generated from field: string node_id = 1;
460
+ */
461
+ nodeId: string;
462
+ constructor(data?: PartialMessage<NodeId>);
463
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
464
+ static readonly typeName = "norsk.api.common.NodeId";
465
+ static readonly fields: FieldList;
466
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): NodeId;
467
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): NodeId;
468
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): NodeId;
469
+ static equals(a: NodeId | PlainMessage<NodeId> | undefined, b: NodeId | PlainMessage<NodeId> | undefined): boolean;
470
+ }
471
+ /**
472
+ * @generated from message norsk.api.common.JobId
473
+ */
474
+ export declare class JobId extends Message<JobId> {
475
+ /**
476
+ * @generated from field: string job_id = 1;
477
+ */
478
+ jobId: string;
479
+ constructor(data?: PartialMessage<JobId>);
480
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
481
+ static readonly typeName = "norsk.api.common.JobId";
482
+ static readonly fields: FieldList;
483
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): JobId;
484
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): JobId;
485
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): JobId;
486
+ static equals(a: JobId | PlainMessage<JobId> | undefined, b: JobId | PlainMessage<JobId> | undefined): boolean;
487
+ }
488
+ /**
489
+ * @generated from message norsk.api.common.ActiveJobKey
490
+ */
491
+ export declare class ActiveJobKey extends Message<ActiveJobKey> {
492
+ /**
493
+ * @generated from field: norsk.api.common.JobId jobId = 1;
494
+ */
495
+ jobId?: JobId;
496
+ /**
497
+ * @generated from field: string role = 2;
498
+ */
499
+ role: string;
500
+ constructor(data?: PartialMessage<ActiveJobKey>);
501
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
502
+ static readonly typeName = "norsk.api.common.ActiveJobKey";
503
+ static readonly fields: FieldList;
504
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ActiveJobKey;
505
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ActiveJobKey;
506
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ActiveJobKey;
507
+ static equals(a: ActiveJobKey | PlainMessage<ActiveJobKey> | undefined, b: ActiveJobKey | PlainMessage<ActiveJobKey> | undefined): boolean;
508
+ }
509
+ /**
510
+ * @generated from message norsk.api.common.ContainerUrl
511
+ */
512
+ export declare class ContainerUrl extends Message<ContainerUrl> {
513
+ /**
514
+ * @generated from field: string url = 1;
515
+ */
516
+ url: string;
517
+ constructor(data?: PartialMessage<ContainerUrl>);
518
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
519
+ static readonly typeName = "norsk.api.common.ContainerUrl";
520
+ static readonly fields: FieldList;
521
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ContainerUrl;
522
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ContainerUrl;
523
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ContainerUrl;
524
+ static equals(a: ContainerUrl | PlainMessage<ContainerUrl> | undefined, b: ContainerUrl | PlainMessage<ContainerUrl> | undefined): boolean;
525
+ }
526
+ /**
527
+ * @generated from message norsk.api.common.DockerContainer
528
+ */
529
+ export declare class DockerContainer extends Message<DockerContainer> {
530
+ /**
531
+ * @generated from field: norsk.api.common.ContainerUrl container_url = 1;
532
+ */
533
+ containerUrl?: ContainerUrl;
534
+ constructor(data?: PartialMessage<DockerContainer>);
535
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
536
+ static readonly typeName = "norsk.api.common.DockerContainer";
537
+ static readonly fields: FieldList;
538
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DockerContainer;
539
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DockerContainer;
540
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DockerContainer;
541
+ static equals(a: DockerContainer | PlainMessage<DockerContainer> | undefined, b: DockerContainer | PlainMessage<DockerContainer> | undefined): boolean;
542
+ }
126
543
  /**
127
544
  * @generated from message norsk.api.common.Log
128
545
  */
@@ -189,3 +606,457 @@ export declare enum Log_Level {
189
606
  */
190
607
  DEBUG = 7
191
608
  }
609
+ /**
610
+ * @generated from message norsk.api.common.HostPortEphemeral
611
+ */
612
+ export declare class HostPortEphemeral extends Message<HostPortEphemeral> {
613
+ constructor(data?: PartialMessage<HostPortEphemeral>);
614
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
615
+ static readonly typeName = "norsk.api.common.HostPortEphemeral";
616
+ static readonly fields: FieldList;
617
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HostPortEphemeral;
618
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HostPortEphemeral;
619
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HostPortEphemeral;
620
+ static equals(a: HostPortEphemeral | PlainMessage<HostPortEphemeral> | undefined, b: HostPortEphemeral | PlainMessage<HostPortEphemeral> | undefined): boolean;
621
+ }
622
+ /**
623
+ * @generated from message norsk.api.common.HostPortRange
624
+ */
625
+ export declare class HostPortRange extends Message<HostPortRange> {
626
+ /**
627
+ * @generated from field: uint32 min_port = 1;
628
+ */
629
+ minPort: number;
630
+ /**
631
+ * @generated from field: uint32 max_port = 2;
632
+ */
633
+ maxPort: number;
634
+ constructor(data?: PartialMessage<HostPortRange>);
635
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
636
+ static readonly typeName = "norsk.api.common.HostPortRange";
637
+ static readonly fields: FieldList;
638
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HostPortRange;
639
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HostPortRange;
640
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HostPortRange;
641
+ static equals(a: HostPortRange | PlainMessage<HostPortRange> | undefined, b: HostPortRange | PlainMessage<HostPortRange> | undefined): boolean;
642
+ }
643
+ /**
644
+ * @generated from message norsk.api.common.HostPortSpecific
645
+ */
646
+ export declare class HostPortSpecific extends Message<HostPortSpecific> {
647
+ /**
648
+ * @generated from field: uint32 port = 1;
649
+ */
650
+ port: number;
651
+ constructor(data?: PartialMessage<HostPortSpecific>);
652
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
653
+ static readonly typeName = "norsk.api.common.HostPortSpecific";
654
+ static readonly fields: FieldList;
655
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HostPortSpecific;
656
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HostPortSpecific;
657
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HostPortSpecific;
658
+ static equals(a: HostPortSpecific | PlainMessage<HostPortSpecific> | undefined, b: HostPortSpecific | PlainMessage<HostPortSpecific> | undefined): boolean;
659
+ }
660
+ /**
661
+ * @generated from message norsk.api.common.PortMapping
662
+ */
663
+ export declare class PortMapping extends Message<PortMapping> {
664
+ /**
665
+ * @generated from field: uint32 container_port = 1;
666
+ */
667
+ containerPort: number;
668
+ /**
669
+ * @generated from field: norsk.api.common.ProtocolFamily protocol = 2;
670
+ */
671
+ protocol: ProtocolFamily;
672
+ /**
673
+ * @generated from oneof norsk.api.common.PortMapping.host_port
674
+ */
675
+ hostPort: {
676
+ /**
677
+ * @generated from field: norsk.api.common.HostPortEphemeral ephemeral = 3;
678
+ */
679
+ value: HostPortEphemeral;
680
+ case: "ephemeral";
681
+ } | {
682
+ /**
683
+ * @generated from field: norsk.api.common.HostPortRange range = 4;
684
+ */
685
+ value: HostPortRange;
686
+ case: "range";
687
+ } | {
688
+ /**
689
+ * @generated from field: norsk.api.common.HostPortSpecific specific = 5;
690
+ */
691
+ value: HostPortSpecific;
692
+ case: "specific";
693
+ } | {
694
+ case: undefined;
695
+ value?: undefined;
696
+ };
697
+ /**
698
+ * @generated from field: string host_address = 6;
699
+ */
700
+ hostAddress: string;
701
+ constructor(data?: PartialMessage<PortMapping>);
702
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
703
+ static readonly typeName = "norsk.api.common.PortMapping";
704
+ static readonly fields: FieldList;
705
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PortMapping;
706
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PortMapping;
707
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PortMapping;
708
+ static equals(a: PortMapping | PlainMessage<PortMapping> | undefined, b: PortMapping | PlainMessage<PortMapping> | undefined): boolean;
709
+ }
710
+ /**
711
+ * @generated from message norsk.api.common.ResolvedPortMapping
712
+ */
713
+ export declare class ResolvedPortMapping extends Message<ResolvedPortMapping> {
714
+ /**
715
+ * @generated from field: string url = 1;
716
+ */
717
+ url: string;
718
+ /**
719
+ * @generated from field: uint32 target = 2;
720
+ */
721
+ target: number;
722
+ /**
723
+ * @generated from field: uint32 published = 3;
724
+ */
725
+ published: number;
726
+ /**
727
+ * @generated from field: norsk.api.common.ProtocolFamily protocol = 4;
728
+ */
729
+ protocol: ProtocolFamily;
730
+ constructor(data?: PartialMessage<ResolvedPortMapping>);
731
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
732
+ static readonly typeName = "norsk.api.common.ResolvedPortMapping";
733
+ static readonly fields: FieldList;
734
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ResolvedPortMapping;
735
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ResolvedPortMapping;
736
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ResolvedPortMapping;
737
+ static equals(a: ResolvedPortMapping | PlainMessage<ResolvedPortMapping> | undefined, b: ResolvedPortMapping | PlainMessage<ResolvedPortMapping> | undefined): boolean;
738
+ }
739
+ /**
740
+ * @generated from message norsk.api.common.ResolvedPortMappings
741
+ */
742
+ export declare class ResolvedPortMappings extends Message<ResolvedPortMappings> {
743
+ /**
744
+ * @generated from field: repeated norsk.api.common.ResolvedPortMapping mappings = 1;
745
+ */
746
+ mappings: ResolvedPortMapping[];
747
+ constructor(data?: PartialMessage<ResolvedPortMappings>);
748
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
749
+ static readonly typeName = "norsk.api.common.ResolvedPortMappings";
750
+ static readonly fields: FieldList;
751
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ResolvedPortMappings;
752
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ResolvedPortMappings;
753
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ResolvedPortMappings;
754
+ static equals(a: ResolvedPortMappings | PlainMessage<ResolvedPortMappings> | undefined, b: ResolvedPortMappings | PlainMessage<ResolvedPortMappings> | undefined): boolean;
755
+ }
756
+ /**
757
+ * @generated from message norsk.api.common.EnvironmentVariable
758
+ */
759
+ export declare class EnvironmentVariable extends Message<EnvironmentVariable> {
760
+ /**
761
+ * @generated from field: string name = 1;
762
+ */
763
+ name: string;
764
+ /**
765
+ * @generated from field: string value = 2;
766
+ */
767
+ value: string;
768
+ constructor(data?: PartialMessage<EnvironmentVariable>);
769
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
770
+ static readonly typeName = "norsk.api.common.EnvironmentVariable";
771
+ static readonly fields: FieldList;
772
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EnvironmentVariable;
773
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EnvironmentVariable;
774
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnvironmentVariable;
775
+ static equals(a: EnvironmentVariable | PlainMessage<EnvironmentVariable> | undefined, b: EnvironmentVariable | PlainMessage<EnvironmentVariable> | undefined): boolean;
776
+ }
777
+ /**
778
+ * @generated from message norsk.api.common.VolumeMount
779
+ */
780
+ export declare class VolumeMount extends Message<VolumeMount> {
781
+ /**
782
+ * @generated from field: string volume_name = 1;
783
+ */
784
+ volumeName: string;
785
+ /**
786
+ * @generated from field: string container_path = 2;
787
+ */
788
+ containerPath: string;
789
+ /**
790
+ * @generated from field: bool read_only = 3;
791
+ */
792
+ readOnly: boolean;
793
+ constructor(data?: PartialMessage<VolumeMount>);
794
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
795
+ static readonly typeName = "norsk.api.common.VolumeMount";
796
+ static readonly fields: FieldList;
797
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VolumeMount;
798
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VolumeMount;
799
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VolumeMount;
800
+ static equals(a: VolumeMount | PlainMessage<VolumeMount> | undefined, b: VolumeMount | PlainMessage<VolumeMount> | undefined): boolean;
801
+ }
802
+ /**
803
+ * @generated from message norsk.api.common.ServiceParameters
804
+ */
805
+ export declare class ServiceParameters extends Message<ServiceParameters> {
806
+ /**
807
+ * @generated from field: repeated norsk.api.common.PortMapping port_mappings = 1;
808
+ */
809
+ portMappings: PortMapping[];
810
+ /**
811
+ * @generated from field: repeated norsk.api.common.EnvironmentVariable environment_variables = 2;
812
+ */
813
+ environmentVariables: EnvironmentVariable[];
814
+ /**
815
+ * @generated from field: norsk.api.common.OptionalInt64 shared_memory_size = 3;
816
+ */
817
+ sharedMemorySize?: OptionalInt64;
818
+ /**
819
+ * @generated from field: repeated uint32 cpu_set = 4;
820
+ */
821
+ cpuSet: number[];
822
+ /**
823
+ * @generated from field: repeated norsk.api.common.VolumeMount volume_mounts = 5;
824
+ */
825
+ volumeMounts: VolumeMount[];
826
+ constructor(data?: PartialMessage<ServiceParameters>);
827
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
828
+ static readonly typeName = "norsk.api.common.ServiceParameters";
829
+ static readonly fields: FieldList;
830
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ServiceParameters;
831
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ServiceParameters;
832
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ServiceParameters;
833
+ static equals(a: ServiceParameters | PlainMessage<ServiceParameters> | undefined, b: ServiceParameters | PlainMessage<ServiceParameters> | undefined): boolean;
834
+ }
835
+ /**
836
+ * @generated from message norsk.api.common.Service
837
+ */
838
+ export declare class Service extends Message<Service> {
839
+ /**
840
+ * @generated from field: string name = 1;
841
+ */
842
+ name: string;
843
+ /**
844
+ * @generated from oneof norsk.api.common.Service.container
845
+ */
846
+ container: {
847
+ /**
848
+ * @generated from field: norsk.api.common.DockerContainer docker = 2;
849
+ */
850
+ value: DockerContainer;
851
+ case: "docker";
852
+ } | {
853
+ case: undefined;
854
+ value?: undefined;
855
+ };
856
+ /**
857
+ * @generated from field: norsk.api.common.Service.ServiceRestart restart = 3;
858
+ */
859
+ restart: Service_ServiceRestart;
860
+ /**
861
+ * @generated from field: repeated string dependsOn = 4;
862
+ */
863
+ dependsOn: string[];
864
+ /**
865
+ * @generated from field: string configuration = 5;
866
+ */
867
+ configuration: string;
868
+ /**
869
+ * @generated from field: uint32 restart_count = 6;
870
+ */
871
+ restartCount: number;
872
+ /**
873
+ * @generated from field: uint32 restart_period = 7;
874
+ */
875
+ restartPeriod: number;
876
+ /**
877
+ * @generated from field: string command = 8;
878
+ */
879
+ command: string;
880
+ /**
881
+ * @generated from field: norsk.api.common.ServiceParameters parameters = 9;
882
+ */
883
+ parameters?: ServiceParameters;
884
+ constructor(data?: PartialMessage<Service>);
885
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
886
+ static readonly typeName = "norsk.api.common.Service";
887
+ static readonly fields: FieldList;
888
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Service;
889
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Service;
890
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Service;
891
+ static equals(a: Service | PlainMessage<Service> | undefined, b: Service | PlainMessage<Service> | undefined): boolean;
892
+ }
893
+ /**
894
+ * @generated from enum norsk.api.common.Service.ServiceRestart
895
+ */
896
+ export declare enum Service_ServiceRestart {
897
+ /**
898
+ * @generated from enum value: NEVER = 0;
899
+ */
900
+ NEVER = 0,
901
+ /**
902
+ * @generated from enum value: ON_FAILURE = 1;
903
+ */
904
+ ON_FAILURE = 1,
905
+ /**
906
+ * @generated from enum value: ALWAYS = 2;
907
+ */
908
+ ALWAYS = 2
909
+ }
910
+ /**
911
+ * @generated from message norsk.api.common.JobInfoServiceStarted
912
+ */
913
+ export declare class JobInfoServiceStarted extends Message<JobInfoServiceStarted> {
914
+ /**
915
+ * @generated from field: string service_name = 2;
916
+ */
917
+ serviceName: string;
918
+ constructor(data?: PartialMessage<JobInfoServiceStarted>);
919
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
920
+ static readonly typeName = "norsk.api.common.JobInfoServiceStarted";
921
+ static readonly fields: FieldList;
922
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): JobInfoServiceStarted;
923
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): JobInfoServiceStarted;
924
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): JobInfoServiceStarted;
925
+ static equals(a: JobInfoServiceStarted | PlainMessage<JobInfoServiceStarted> | undefined, b: JobInfoServiceStarted | PlainMessage<JobInfoServiceStarted> | undefined): boolean;
926
+ }
927
+ /**
928
+ * @generated from message norsk.api.common.JobInfoServiceRestarting
929
+ */
930
+ export declare class JobInfoServiceRestarting extends Message<JobInfoServiceRestarting> {
931
+ /**
932
+ * @generated from field: string service_name = 2;
933
+ */
934
+ serviceName: string;
935
+ constructor(data?: PartialMessage<JobInfoServiceRestarting>);
936
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
937
+ static readonly typeName = "norsk.api.common.JobInfoServiceRestarting";
938
+ static readonly fields: FieldList;
939
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): JobInfoServiceRestarting;
940
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): JobInfoServiceRestarting;
941
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): JobInfoServiceRestarting;
942
+ static equals(a: JobInfoServiceRestarting | PlainMessage<JobInfoServiceRestarting> | undefined, b: JobInfoServiceRestarting | PlainMessage<JobInfoServiceRestarting> | undefined): boolean;
943
+ }
944
+ /**
945
+ * @generated from message norsk.api.common.JobInfoContainerEvent
946
+ */
947
+ export declare class JobInfoContainerEvent extends Message<JobInfoContainerEvent> {
948
+ /**
949
+ * @generated from field: string service_name = 2;
950
+ */
951
+ serviceName: string;
952
+ /**
953
+ * @generated from field: string text = 3;
954
+ */
955
+ text: string;
956
+ constructor(data?: PartialMessage<JobInfoContainerEvent>);
957
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
958
+ static readonly typeName = "norsk.api.common.JobInfoContainerEvent";
959
+ static readonly fields: FieldList;
960
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): JobInfoContainerEvent;
961
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): JobInfoContainerEvent;
962
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): JobInfoContainerEvent;
963
+ static equals(a: JobInfoContainerEvent | PlainMessage<JobInfoContainerEvent> | undefined, b: JobInfoContainerEvent | PlainMessage<JobInfoContainerEvent> | undefined): boolean;
964
+ }
965
+ /**
966
+ * @generated from message norsk.api.common.JobInfoComponseMessage
967
+ */
968
+ export declare class JobInfoComponseMessage extends Message<JobInfoComponseMessage> {
969
+ /**
970
+ * @generated from field: norsk.api.common.JobInfoComponseMessage.Stage stage = 2;
971
+ */
972
+ stage: JobInfoComponseMessage_Stage;
973
+ /**
974
+ * @generated from field: string text = 3;
975
+ */
976
+ text: string;
977
+ constructor(data?: PartialMessage<JobInfoComponseMessage>);
978
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
979
+ static readonly typeName = "norsk.api.common.JobInfoComponseMessage";
980
+ static readonly fields: FieldList;
981
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): JobInfoComponseMessage;
982
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): JobInfoComponseMessage;
983
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): JobInfoComponseMessage;
984
+ static equals(a: JobInfoComponseMessage | PlainMessage<JobInfoComponseMessage> | undefined, b: JobInfoComponseMessage | PlainMessage<JobInfoComponseMessage> | undefined): boolean;
985
+ }
986
+ /**
987
+ * @generated from enum norsk.api.common.JobInfoComponseMessage.Stage
988
+ */
989
+ export declare enum JobInfoComponseMessage_Stage {
990
+ /**
991
+ * @generated from enum value: BUILD = 0;
992
+ */
993
+ BUILD = 0,
994
+ /**
995
+ * @generated from enum value: CREATE = 1;
996
+ */
997
+ CREATE = 1,
998
+ /**
999
+ * @generated from enum value: START = 2;
1000
+ */
1001
+ START = 2,
1002
+ /**
1003
+ * @generated from enum value: STOP = 3;
1004
+ */
1005
+ STOP = 3,
1006
+ /**
1007
+ * @generated from enum value: DOWN = 4;
1008
+ */
1009
+ DOWN = 4
1010
+ }
1011
+ /**
1012
+ * @generated from message norsk.api.common.JobInfoMessage
1013
+ */
1014
+ export declare class JobInfoMessage extends Message<JobInfoMessage> {
1015
+ /**
1016
+ * @generated from field: norsk.api.common.ActiveJobKey job_key = 1;
1017
+ */
1018
+ jobKey?: ActiveJobKey;
1019
+ /**
1020
+ * @generated from field: google.protobuf.Timestamp timestamp = 2;
1021
+ */
1022
+ timestamp?: Timestamp;
1023
+ /**
1024
+ * @generated from oneof norsk.api.common.JobInfoMessage.message
1025
+ */
1026
+ message: {
1027
+ /**
1028
+ * @generated from field: norsk.api.common.JobInfoServiceStarted service_started = 3;
1029
+ */
1030
+ value: JobInfoServiceStarted;
1031
+ case: "serviceStarted";
1032
+ } | {
1033
+ /**
1034
+ * @generated from field: norsk.api.common.JobInfoServiceRestarting service_restarting = 4;
1035
+ */
1036
+ value: JobInfoServiceRestarting;
1037
+ case: "serviceRestarting";
1038
+ } | {
1039
+ /**
1040
+ * @generated from field: norsk.api.common.JobInfoContainerEvent container_event = 5;
1041
+ */
1042
+ value: JobInfoContainerEvent;
1043
+ case: "containerEvent";
1044
+ } | {
1045
+ /**
1046
+ * @generated from field: norsk.api.common.JobInfoComponseMessage compose_message = 6;
1047
+ */
1048
+ value: JobInfoComponseMessage;
1049
+ case: "composeMessage";
1050
+ } | {
1051
+ case: undefined;
1052
+ value?: undefined;
1053
+ };
1054
+ constructor(data?: PartialMessage<JobInfoMessage>);
1055
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
1056
+ static readonly typeName = "norsk.api.common.JobInfoMessage";
1057
+ static readonly fields: FieldList;
1058
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): JobInfoMessage;
1059
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): JobInfoMessage;
1060
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): JobInfoMessage;
1061
+ static equals(a: JobInfoMessage | PlainMessage<JobInfoMessage> | undefined, b: JobInfoMessage | PlainMessage<JobInfoMessage> | undefined): boolean;
1062
+ }