@liquidmetal-ai/drizzle 0.1.2 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.changeset/real-forks-smile.md +6 -0
- package/.turbo/turbo-lint.log +6 -0
- package/.turbo/turbo-test.log +6 -0
- package/dist/appify/build.d.ts +33 -3
- package/dist/appify/build.d.ts.map +1 -1
- package/dist/appify/build.js +169 -27
- package/dist/appify/build.test.js +75 -3
- package/dist/appify/validate.d.ts +2 -1
- package/dist/appify/validate.d.ts.map +1 -1
- package/dist/appify/validate.js +78 -9
- package/dist/appify/validate.test.js +74 -4
- package/dist/codestore.js +2 -2
- package/dist/liquidmetal/v1alpha1/catalog_connect.d.ts +81 -78
- package/dist/liquidmetal/v1alpha1/catalog_connect.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/catalog_connect.js +81 -78
- package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts +572 -610
- package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/catalog_pb.js +675 -741
- package/package.json +1 -1
- package/src/appify/build.test.ts +85 -3
- package/src/appify/build.ts +184 -28
- package/src/appify/validate.test.ts +77 -4
- package/src/appify/validate.ts +85 -8
- package/src/codestore.ts +2 -2
- package/src/liquidmetal/v1alpha1/catalog_connect.ts +81 -78
- package/src/liquidmetal/v1alpha1/catalog_pb.ts +872 -970
- package/.turbo/turbo-build.log +0 -30
|
@@ -6,6 +6,64 @@
|
|
|
6
6
|
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
7
7
|
import { Message, proto3, Struct, Timestamp } from "@bufbuild/protobuf";
|
|
8
8
|
|
|
9
|
+
/**
|
|
10
|
+
* UnitState is the state of an application, module or resource.
|
|
11
|
+
*
|
|
12
|
+
* @generated from enum liquidmetal.v1alpha1.UnitState
|
|
13
|
+
*/
|
|
14
|
+
export enum UnitState {
|
|
15
|
+
/**
|
|
16
|
+
* @generated from enum value: UNIT_STATE_UNSPECIFIED = 0;
|
|
17
|
+
*/
|
|
18
|
+
UNSPECIFIED = 0,
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* @generated from enum value: UNIT_STATE_PENDING = 1;
|
|
22
|
+
*/
|
|
23
|
+
PENDING = 1,
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* @generated from enum value: UNIT_STATE_STARTING = 2;
|
|
27
|
+
*/
|
|
28
|
+
STARTING = 2,
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* @generated from enum value: UNIT_STATE_RUNNING = 3;
|
|
32
|
+
*/
|
|
33
|
+
RUNNING = 3,
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @generated from enum value: UNIT_STATE_STOPPING = 4;
|
|
37
|
+
*/
|
|
38
|
+
STOPPING = 4,
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* @generated from enum value: UNIT_STATE_STOPPED = 5;
|
|
42
|
+
*/
|
|
43
|
+
STOPPED = 5,
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* @generated from enum value: UNIT_STATE_DELETING = 6;
|
|
47
|
+
*/
|
|
48
|
+
DELETING = 6,
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* @generated from enum value: UNIT_STATE_DELETED = 7;
|
|
52
|
+
*/
|
|
53
|
+
DELETED = 7,
|
|
54
|
+
}
|
|
55
|
+
// Retrieve enum metadata with: proto3.getEnumType(UnitState)
|
|
56
|
+
proto3.util.setEnumType(UnitState, "liquidmetal.v1alpha1.UnitState", [
|
|
57
|
+
{ no: 0, name: "UNIT_STATE_UNSPECIFIED" },
|
|
58
|
+
{ no: 1, name: "UNIT_STATE_PENDING" },
|
|
59
|
+
{ no: 2, name: "UNIT_STATE_STARTING" },
|
|
60
|
+
{ no: 3, name: "UNIT_STATE_RUNNING" },
|
|
61
|
+
{ no: 4, name: "UNIT_STATE_STOPPING" },
|
|
62
|
+
{ no: 5, name: "UNIT_STATE_STOPPED" },
|
|
63
|
+
{ no: 6, name: "UNIT_STATE_DELETING" },
|
|
64
|
+
{ no: 7, name: "UNIT_STATE_DELETED" },
|
|
65
|
+
]);
|
|
66
|
+
|
|
9
67
|
/**
|
|
10
68
|
* @generated from enum liquidmetal.v1alpha1.BundleArchiveType
|
|
11
69
|
*/
|
|
@@ -26,6 +84,32 @@ proto3.util.setEnumType(BundleArchiveType, "liquidmetal.v1alpha1.BundleArchiveTy
|
|
|
26
84
|
{ no: 1, name: "BUNDLE_ARCHIVE_TYPE_ZIP" },
|
|
27
85
|
]);
|
|
28
86
|
|
|
87
|
+
/**
|
|
88
|
+
* @generated from enum liquidmetal.v1alpha1.WatchResponseEventType
|
|
89
|
+
*/
|
|
90
|
+
export enum WatchResponseEventType {
|
|
91
|
+
/**
|
|
92
|
+
* @generated from enum value: WATCH_RESPONSE_EVENT_TYPE_UNSPECIFIED = 0;
|
|
93
|
+
*/
|
|
94
|
+
UNSPECIFIED = 0,
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* @generated from enum value: WATCH_RESPONSE_EVENT_TYPE_MESSAGE = 1;
|
|
98
|
+
*/
|
|
99
|
+
MESSAGE = 1,
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* @generated from enum value: WATCH_RESPONSE_EVENT_TYPE_COMPLETE = 2;
|
|
103
|
+
*/
|
|
104
|
+
COMPLETE = 2,
|
|
105
|
+
}
|
|
106
|
+
// Retrieve enum metadata with: proto3.getEnumType(WatchResponseEventType)
|
|
107
|
+
proto3.util.setEnumType(WatchResponseEventType, "liquidmetal.v1alpha1.WatchResponseEventType", [
|
|
108
|
+
{ no: 0, name: "WATCH_RESPONSE_EVENT_TYPE_UNSPECIFIED" },
|
|
109
|
+
{ no: 1, name: "WATCH_RESPONSE_EVENT_TYPE_MESSAGE" },
|
|
110
|
+
{ no: 2, name: "WATCH_RESPONSE_EVENT_TYPE_COMPLETE" },
|
|
111
|
+
]);
|
|
112
|
+
|
|
29
113
|
/**
|
|
30
114
|
* @generated from message liquidmetal.v1alpha1.ApplicationsRequest
|
|
31
115
|
*/
|
|
@@ -179,6 +263,26 @@ export class ApplicationsResponse_Application extends Message<ApplicationsRespon
|
|
|
179
263
|
*/
|
|
180
264
|
organizationId = "";
|
|
181
265
|
|
|
266
|
+
/**
|
|
267
|
+
* @generated from field: optional string branch = 10;
|
|
268
|
+
*/
|
|
269
|
+
branch?: string;
|
|
270
|
+
|
|
271
|
+
/**
|
|
272
|
+
* @generated from field: bool is_sandboxed = 11;
|
|
273
|
+
*/
|
|
274
|
+
isSandboxed = false;
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* @generated from field: optional string previous_version_id = 12;
|
|
278
|
+
*/
|
|
279
|
+
previousVersionId?: string;
|
|
280
|
+
|
|
281
|
+
/**
|
|
282
|
+
* @generated from field: liquidmetal.v1alpha1.UnitState state = 13;
|
|
283
|
+
*/
|
|
284
|
+
state = UnitState.UNSPECIFIED;
|
|
285
|
+
|
|
182
286
|
constructor(data?: PartialMessage<ApplicationsResponse_Application>) {
|
|
183
287
|
super();
|
|
184
288
|
proto3.util.initPartial(data, this);
|
|
@@ -196,6 +300,10 @@ export class ApplicationsResponse_Application extends Message<ApplicationsRespon
|
|
|
196
300
|
{ no: 7, name: "deleted_at", kind: "message", T: Timestamp, opt: true },
|
|
197
301
|
{ no: 8, name: "is_active", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
198
302
|
{ no: 9, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
303
|
+
{ no: 10, name: "branch", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
304
|
+
{ no: 11, name: "is_sandboxed", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
305
|
+
{ no: 12, name: "previous_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
306
|
+
{ no: 13, name: "state", kind: "enum", T: proto3.getEnumType(UnitState) },
|
|
199
307
|
]);
|
|
200
308
|
|
|
201
309
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ApplicationsResponse_Application {
|
|
@@ -380,261 +488,296 @@ export class InternalApplicationsRequestPaginationToken extends Message<Internal
|
|
|
380
488
|
}
|
|
381
489
|
|
|
382
490
|
/**
|
|
383
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
491
|
+
* @generated from message liquidmetal.v1alpha1.UploadBundleRequest
|
|
384
492
|
*/
|
|
385
|
-
export class
|
|
493
|
+
export class UploadBundleRequest extends Message<UploadBundleRequest> {
|
|
386
494
|
/**
|
|
387
|
-
* @generated from field:
|
|
495
|
+
* @generated from field: string user_id = 1;
|
|
388
496
|
*/
|
|
389
|
-
|
|
497
|
+
userId = "";
|
|
390
498
|
|
|
391
499
|
/**
|
|
392
|
-
* @generated from field: string
|
|
500
|
+
* @generated from field: string organization_id = 2;
|
|
393
501
|
*/
|
|
394
|
-
|
|
502
|
+
organizationId = "";
|
|
395
503
|
|
|
396
504
|
/**
|
|
397
|
-
* @generated from field: string
|
|
505
|
+
* @generated from field: string application_name = 3;
|
|
398
506
|
*/
|
|
399
|
-
|
|
507
|
+
applicationName = "";
|
|
400
508
|
|
|
401
509
|
/**
|
|
402
|
-
* @generated from field:
|
|
510
|
+
* @generated from field: string application_version_id = 4;
|
|
403
511
|
*/
|
|
404
|
-
|
|
512
|
+
applicationVersionId = "";
|
|
513
|
+
|
|
514
|
+
/**
|
|
515
|
+
* @generated from field: string bundle_name = 5;
|
|
516
|
+
*/
|
|
517
|
+
bundleName = "";
|
|
518
|
+
|
|
519
|
+
/**
|
|
520
|
+
* @generated from field: liquidmetal.v1alpha1.BundleArchiveType archive_type = 6;
|
|
521
|
+
*/
|
|
522
|
+
archiveType = BundleArchiveType.UNSPECIFIED;
|
|
523
|
+
|
|
524
|
+
/**
|
|
525
|
+
* @generated from field: bytes archive = 7;
|
|
526
|
+
*/
|
|
527
|
+
archive = new Uint8Array(0);
|
|
405
528
|
|
|
406
|
-
constructor(data?: PartialMessage<
|
|
529
|
+
constructor(data?: PartialMessage<UploadBundleRequest>) {
|
|
407
530
|
super();
|
|
408
531
|
proto3.util.initPartial(data, this);
|
|
409
532
|
}
|
|
410
533
|
|
|
411
534
|
static readonly runtime: typeof proto3 = proto3;
|
|
412
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
535
|
+
static readonly typeName = "liquidmetal.v1alpha1.UploadBundleRequest";
|
|
413
536
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
414
|
-
{ no: 1, name: "
|
|
415
|
-
{ no: 2, name: "
|
|
416
|
-
{ no: 3, name: "
|
|
417
|
-
{ no: 4, name: "
|
|
537
|
+
{ no: 1, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
538
|
+
{ no: 2, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
539
|
+
{ no: 3, name: "application_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
540
|
+
{ no: 4, name: "application_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
541
|
+
{ no: 5, name: "bundle_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
542
|
+
{ no: 6, name: "archive_type", kind: "enum", T: proto3.getEnumType(BundleArchiveType) },
|
|
543
|
+
{ no: 7, name: "archive", kind: "scalar", T: 12 /* ScalarType.BYTES */ },
|
|
418
544
|
]);
|
|
419
545
|
|
|
420
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
421
|
-
return new
|
|
546
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UploadBundleRequest {
|
|
547
|
+
return new UploadBundleRequest().fromBinary(bytes, options);
|
|
422
548
|
}
|
|
423
549
|
|
|
424
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
425
|
-
return new
|
|
550
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UploadBundleRequest {
|
|
551
|
+
return new UploadBundleRequest().fromJson(jsonValue, options);
|
|
426
552
|
}
|
|
427
553
|
|
|
428
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
429
|
-
return new
|
|
554
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UploadBundleRequest {
|
|
555
|
+
return new UploadBundleRequest().fromJsonString(jsonString, options);
|
|
430
556
|
}
|
|
431
557
|
|
|
432
|
-
static equals(a:
|
|
433
|
-
return proto3.util.equals(
|
|
558
|
+
static equals(a: UploadBundleRequest | PlainMessage<UploadBundleRequest> | undefined, b: UploadBundleRequest | PlainMessage<UploadBundleRequest> | undefined): boolean {
|
|
559
|
+
return proto3.util.equals(UploadBundleRequest, a, b);
|
|
434
560
|
}
|
|
435
561
|
}
|
|
436
562
|
|
|
437
563
|
/**
|
|
438
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
564
|
+
* @generated from message liquidmetal.v1alpha1.UploadBundleResponse
|
|
439
565
|
*/
|
|
440
|
-
export class
|
|
441
|
-
|
|
442
|
-
* @generated from field: string runtime_version = 1;
|
|
443
|
-
*/
|
|
444
|
-
runtimeVersion = "";
|
|
445
|
-
|
|
446
|
-
constructor(data?: PartialMessage<CreateApplicationsRequest_ApplicationMetadata>) {
|
|
566
|
+
export class UploadBundleResponse extends Message<UploadBundleResponse> {
|
|
567
|
+
constructor(data?: PartialMessage<UploadBundleResponse>) {
|
|
447
568
|
super();
|
|
448
569
|
proto3.util.initPartial(data, this);
|
|
449
570
|
}
|
|
450
571
|
|
|
451
572
|
static readonly runtime: typeof proto3 = proto3;
|
|
452
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
573
|
+
static readonly typeName = "liquidmetal.v1alpha1.UploadBundleResponse";
|
|
453
574
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
454
|
-
{ no: 1, name: "runtime_version", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
455
575
|
]);
|
|
456
576
|
|
|
457
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
458
|
-
return new
|
|
577
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UploadBundleResponse {
|
|
578
|
+
return new UploadBundleResponse().fromBinary(bytes, options);
|
|
459
579
|
}
|
|
460
580
|
|
|
461
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
462
|
-
return new
|
|
581
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UploadBundleResponse {
|
|
582
|
+
return new UploadBundleResponse().fromJson(jsonValue, options);
|
|
463
583
|
}
|
|
464
584
|
|
|
465
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
466
|
-
return new
|
|
585
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UploadBundleResponse {
|
|
586
|
+
return new UploadBundleResponse().fromJsonString(jsonString, options);
|
|
467
587
|
}
|
|
468
588
|
|
|
469
|
-
static equals(a:
|
|
470
|
-
return proto3.util.equals(
|
|
589
|
+
static equals(a: UploadBundleResponse | PlainMessage<UploadBundleResponse> | undefined, b: UploadBundleResponse | PlainMessage<UploadBundleResponse> | undefined): boolean {
|
|
590
|
+
return proto3.util.equals(UploadBundleResponse, a, b);
|
|
471
591
|
}
|
|
472
592
|
}
|
|
473
593
|
|
|
474
594
|
/**
|
|
475
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
595
|
+
* @generated from message liquidmetal.v1alpha1.QueryResourcesRequest
|
|
476
596
|
*/
|
|
477
|
-
export class
|
|
478
|
-
/**
|
|
479
|
-
* @generated from field: string name = 1;
|
|
480
|
-
*/
|
|
481
|
-
name = "";
|
|
482
|
-
|
|
483
|
-
/**
|
|
484
|
-
* @generated from oneof liquidmetal.v1alpha1.CreateApplicationsRequest.Application.version
|
|
485
|
-
*/
|
|
486
|
-
version: {
|
|
487
|
-
/**
|
|
488
|
-
* @generated from field: string version_id = 2;
|
|
489
|
-
*/
|
|
490
|
-
value: string;
|
|
491
|
-
case: "versionId";
|
|
492
|
-
} | {
|
|
493
|
-
/**
|
|
494
|
-
* @generated from field: string previous_version_id = 3;
|
|
495
|
-
*/
|
|
496
|
-
value: string;
|
|
497
|
-
case: "previousVersionId";
|
|
498
|
-
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
499
|
-
|
|
597
|
+
export class QueryResourcesRequest extends Message<QueryResourcesRequest> {
|
|
500
598
|
/**
|
|
501
|
-
* @generated from field: string
|
|
599
|
+
* @generated from field: string user_id = 1;
|
|
502
600
|
*/
|
|
503
|
-
|
|
601
|
+
userId = "";
|
|
504
602
|
|
|
505
603
|
/**
|
|
506
|
-
* @generated from field: string
|
|
604
|
+
* @generated from field: string organization_id = 2;
|
|
507
605
|
*/
|
|
508
|
-
|
|
606
|
+
organizationId = "";
|
|
509
607
|
|
|
510
608
|
/**
|
|
511
|
-
* @generated from field:
|
|
609
|
+
* @generated from field: string application_name = 3;
|
|
512
610
|
*/
|
|
513
|
-
|
|
611
|
+
applicationName = "";
|
|
514
612
|
|
|
515
613
|
/**
|
|
516
|
-
* @generated from field:
|
|
614
|
+
* @generated from field: string application_version_id = 4;
|
|
517
615
|
*/
|
|
518
|
-
|
|
616
|
+
applicationVersionId = "";
|
|
519
617
|
|
|
520
|
-
constructor(data?: PartialMessage<
|
|
618
|
+
constructor(data?: PartialMessage<QueryResourcesRequest>) {
|
|
521
619
|
super();
|
|
522
620
|
proto3.util.initPartial(data, this);
|
|
523
621
|
}
|
|
524
622
|
|
|
525
623
|
static readonly runtime: typeof proto3 = proto3;
|
|
526
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
624
|
+
static readonly typeName = "liquidmetal.v1alpha1.QueryResourcesRequest";
|
|
527
625
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
528
|
-
{ no: 1, name: "
|
|
529
|
-
{ no: 2, name: "
|
|
530
|
-
{ no: 3, name: "
|
|
531
|
-
{ no: 4, name: "
|
|
532
|
-
{ no: 5, name: "manifest_json", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
533
|
-
{ no: 6, name: "is_active", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
534
|
-
{ no: 7, name: "metadata", kind: "message", T: CreateApplicationsRequest_ApplicationMetadata },
|
|
626
|
+
{ no: 1, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
627
|
+
{ no: 2, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
628
|
+
{ no: 3, name: "application_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
629
|
+
{ no: 4, name: "application_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
535
630
|
]);
|
|
536
631
|
|
|
537
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
538
|
-
return new
|
|
632
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QueryResourcesRequest {
|
|
633
|
+
return new QueryResourcesRequest().fromBinary(bytes, options);
|
|
539
634
|
}
|
|
540
635
|
|
|
541
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
542
|
-
return new
|
|
636
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QueryResourcesRequest {
|
|
637
|
+
return new QueryResourcesRequest().fromJson(jsonValue, options);
|
|
543
638
|
}
|
|
544
639
|
|
|
545
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
546
|
-
return new
|
|
640
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QueryResourcesRequest {
|
|
641
|
+
return new QueryResourcesRequest().fromJsonString(jsonString, options);
|
|
547
642
|
}
|
|
548
643
|
|
|
549
|
-
static equals(a:
|
|
550
|
-
return proto3.util.equals(
|
|
644
|
+
static equals(a: QueryResourcesRequest | PlainMessage<QueryResourcesRequest> | undefined, b: QueryResourcesRequest | PlainMessage<QueryResourcesRequest> | undefined): boolean {
|
|
645
|
+
return proto3.util.equals(QueryResourcesRequest, a, b);
|
|
551
646
|
}
|
|
552
647
|
}
|
|
553
648
|
|
|
554
649
|
/**
|
|
555
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
650
|
+
* @generated from message liquidmetal.v1alpha1.QueryResourcesResponse
|
|
556
651
|
*/
|
|
557
|
-
export class
|
|
652
|
+
export class QueryResourcesResponse extends Message<QueryResourcesResponse> {
|
|
653
|
+
/**
|
|
654
|
+
* @generated from field: repeated liquidmetal.v1alpha1.QueryResourcesResponse.Resource resources = 1;
|
|
655
|
+
*/
|
|
656
|
+
resources: QueryResourcesResponse_Resource[] = [];
|
|
657
|
+
|
|
558
658
|
/**
|
|
559
|
-
* @generated from field:
|
|
659
|
+
* @generated from field: optional string next_page_token = 2;
|
|
560
660
|
*/
|
|
561
|
-
|
|
661
|
+
nextPageToken?: string;
|
|
562
662
|
|
|
563
|
-
constructor(data?: PartialMessage<
|
|
663
|
+
constructor(data?: PartialMessage<QueryResourcesResponse>) {
|
|
564
664
|
super();
|
|
565
665
|
proto3.util.initPartial(data, this);
|
|
566
666
|
}
|
|
567
667
|
|
|
568
668
|
static readonly runtime: typeof proto3 = proto3;
|
|
569
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
669
|
+
static readonly typeName = "liquidmetal.v1alpha1.QueryResourcesResponse";
|
|
570
670
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
571
|
-
{ no: 1, name: "
|
|
671
|
+
{ no: 1, name: "resources", kind: "message", T: QueryResourcesResponse_Resource, repeated: true },
|
|
672
|
+
{ no: 2, name: "next_page_token", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
572
673
|
]);
|
|
573
674
|
|
|
574
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
575
|
-
return new
|
|
675
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QueryResourcesResponse {
|
|
676
|
+
return new QueryResourcesResponse().fromBinary(bytes, options);
|
|
576
677
|
}
|
|
577
678
|
|
|
578
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
579
|
-
return new
|
|
679
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QueryResourcesResponse {
|
|
680
|
+
return new QueryResourcesResponse().fromJson(jsonValue, options);
|
|
580
681
|
}
|
|
581
682
|
|
|
582
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
583
|
-
return new
|
|
683
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QueryResourcesResponse {
|
|
684
|
+
return new QueryResourcesResponse().fromJsonString(jsonString, options);
|
|
584
685
|
}
|
|
585
686
|
|
|
586
|
-
static equals(a:
|
|
587
|
-
return proto3.util.equals(
|
|
687
|
+
static equals(a: QueryResourcesResponse | PlainMessage<QueryResourcesResponse> | undefined, b: QueryResourcesResponse | PlainMessage<QueryResourcesResponse> | undefined): boolean {
|
|
688
|
+
return proto3.util.equals(QueryResourcesResponse, a, b);
|
|
588
689
|
}
|
|
589
690
|
}
|
|
590
691
|
|
|
591
692
|
/**
|
|
592
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
693
|
+
* @generated from message liquidmetal.v1alpha1.QueryResourcesResponse.Resource
|
|
593
694
|
*/
|
|
594
|
-
export class
|
|
695
|
+
export class QueryResourcesResponse_Resource extends Message<QueryResourcesResponse_Resource> {
|
|
595
696
|
/**
|
|
596
|
-
* @generated from field: string
|
|
697
|
+
* @generated from field: string organization_id = 1;
|
|
698
|
+
*/
|
|
699
|
+
organizationId = "";
|
|
700
|
+
|
|
701
|
+
/**
|
|
702
|
+
* @generated from field: string application_name = 2;
|
|
703
|
+
*/
|
|
704
|
+
applicationName = "";
|
|
705
|
+
|
|
706
|
+
/**
|
|
707
|
+
* @generated from field: string application_version_id = 3;
|
|
708
|
+
*/
|
|
709
|
+
applicationVersionId = "";
|
|
710
|
+
|
|
711
|
+
/**
|
|
712
|
+
* @generated from field: string resource_id = 4;
|
|
713
|
+
*/
|
|
714
|
+
resourceId = "";
|
|
715
|
+
|
|
716
|
+
/**
|
|
717
|
+
* @generated from field: string name = 5;
|
|
597
718
|
*/
|
|
598
719
|
name = "";
|
|
599
720
|
|
|
600
721
|
/**
|
|
601
|
-
* @generated from field: string
|
|
722
|
+
* @generated from field: string type = 6;
|
|
602
723
|
*/
|
|
603
|
-
|
|
724
|
+
type = "";
|
|
725
|
+
|
|
726
|
+
/**
|
|
727
|
+
* @generated from field: google.protobuf.Struct attributes = 8;
|
|
728
|
+
*/
|
|
729
|
+
attributes?: Struct;
|
|
730
|
+
|
|
731
|
+
/**
|
|
732
|
+
* @generated from field: google.protobuf.Timestamp created_at = 9;
|
|
733
|
+
*/
|
|
734
|
+
createdAt?: Timestamp;
|
|
604
735
|
|
|
605
|
-
|
|
736
|
+
/**
|
|
737
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 10;
|
|
738
|
+
*/
|
|
739
|
+
updatedAt?: Timestamp;
|
|
740
|
+
|
|
741
|
+
constructor(data?: PartialMessage<QueryResourcesResponse_Resource>) {
|
|
606
742
|
super();
|
|
607
743
|
proto3.util.initPartial(data, this);
|
|
608
744
|
}
|
|
609
745
|
|
|
610
746
|
static readonly runtime: typeof proto3 = proto3;
|
|
611
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
747
|
+
static readonly typeName = "liquidmetal.v1alpha1.QueryResourcesResponse.Resource";
|
|
612
748
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
613
|
-
{ no: 1, name: "
|
|
614
|
-
{ no: 2, name: "
|
|
749
|
+
{ no: 1, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
750
|
+
{ no: 2, name: "application_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
751
|
+
{ no: 3, name: "application_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
752
|
+
{ no: 4, name: "resource_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
753
|
+
{ no: 5, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
754
|
+
{ no: 6, name: "type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
755
|
+
{ no: 8, name: "attributes", kind: "message", T: Struct },
|
|
756
|
+
{ no: 9, name: "created_at", kind: "message", T: Timestamp },
|
|
757
|
+
{ no: 10, name: "updated_at", kind: "message", T: Timestamp },
|
|
615
758
|
]);
|
|
616
759
|
|
|
617
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
618
|
-
return new
|
|
760
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QueryResourcesResponse_Resource {
|
|
761
|
+
return new QueryResourcesResponse_Resource().fromBinary(bytes, options);
|
|
619
762
|
}
|
|
620
763
|
|
|
621
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
622
|
-
return new
|
|
764
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QueryResourcesResponse_Resource {
|
|
765
|
+
return new QueryResourcesResponse_Resource().fromJson(jsonValue, options);
|
|
623
766
|
}
|
|
624
767
|
|
|
625
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
626
|
-
return new
|
|
768
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QueryResourcesResponse_Resource {
|
|
769
|
+
return new QueryResourcesResponse_Resource().fromJsonString(jsonString, options);
|
|
627
770
|
}
|
|
628
771
|
|
|
629
|
-
static equals(a:
|
|
630
|
-
return proto3.util.equals(
|
|
772
|
+
static equals(a: QueryResourcesResponse_Resource | PlainMessage<QueryResourcesResponse_Resource> | undefined, b: QueryResourcesResponse_Resource | PlainMessage<QueryResourcesResponse_Resource> | undefined): boolean {
|
|
773
|
+
return proto3.util.equals(QueryResourcesResponse_Resource, a, b);
|
|
631
774
|
}
|
|
632
775
|
}
|
|
633
776
|
|
|
634
777
|
/**
|
|
635
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
778
|
+
* @generated from message liquidmetal.v1alpha1.DeployRequest
|
|
636
779
|
*/
|
|
637
|
-
export class
|
|
780
|
+
export class DeployRequest extends Message<DeployRequest> {
|
|
638
781
|
/**
|
|
639
782
|
* @generated from field: string user_id = 1;
|
|
640
783
|
*/
|
|
@@ -646,528 +789,412 @@ export class VersionsRequest extends Message<VersionsRequest> {
|
|
|
646
789
|
organizationId = "";
|
|
647
790
|
|
|
648
791
|
/**
|
|
649
|
-
* @generated from field:
|
|
792
|
+
* @generated from field: repeated liquidmetal.v1alpha1.DeployRequest.Application applications = 3;
|
|
650
793
|
*/
|
|
651
|
-
|
|
794
|
+
applications: DeployRequest_Application[] = [];
|
|
652
795
|
|
|
653
|
-
constructor(data?: PartialMessage<
|
|
796
|
+
constructor(data?: PartialMessage<DeployRequest>) {
|
|
654
797
|
super();
|
|
655
798
|
proto3.util.initPartial(data, this);
|
|
656
799
|
}
|
|
657
800
|
|
|
658
801
|
static readonly runtime: typeof proto3 = proto3;
|
|
659
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
802
|
+
static readonly typeName = "liquidmetal.v1alpha1.DeployRequest";
|
|
660
803
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
661
804
|
{ no: 1, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
662
805
|
{ no: 2, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
663
|
-
{ no: 3, name: "
|
|
806
|
+
{ no: 3, name: "applications", kind: "message", T: DeployRequest_Application, repeated: true },
|
|
664
807
|
]);
|
|
665
808
|
|
|
666
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
667
|
-
return new
|
|
809
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeployRequest {
|
|
810
|
+
return new DeployRequest().fromBinary(bytes, options);
|
|
668
811
|
}
|
|
669
812
|
|
|
670
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
671
|
-
return new
|
|
813
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeployRequest {
|
|
814
|
+
return new DeployRequest().fromJson(jsonValue, options);
|
|
672
815
|
}
|
|
673
816
|
|
|
674
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
675
|
-
return new
|
|
817
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeployRequest {
|
|
818
|
+
return new DeployRequest().fromJsonString(jsonString, options);
|
|
676
819
|
}
|
|
677
820
|
|
|
678
|
-
static equals(a:
|
|
679
|
-
return proto3.util.equals(
|
|
821
|
+
static equals(a: DeployRequest | PlainMessage<DeployRequest> | undefined, b: DeployRequest | PlainMessage<DeployRequest> | undefined): boolean {
|
|
822
|
+
return proto3.util.equals(DeployRequest, a, b);
|
|
680
823
|
}
|
|
681
824
|
}
|
|
682
825
|
|
|
683
826
|
/**
|
|
684
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
827
|
+
* @generated from message liquidmetal.v1alpha1.DeployRequest.ApplicationMetadata
|
|
685
828
|
*/
|
|
686
|
-
export class
|
|
687
|
-
/**
|
|
688
|
-
* @generated from field: repeated liquidmetal.v1alpha1.VersionsResponse.Version versions = 1;
|
|
689
|
-
*/
|
|
690
|
-
versions: VersionsResponse_Version[] = [];
|
|
691
|
-
|
|
829
|
+
export class DeployRequest_ApplicationMetadata extends Message<DeployRequest_ApplicationMetadata> {
|
|
692
830
|
/**
|
|
693
|
-
* @generated from field:
|
|
831
|
+
* @generated from field: string runtime_version = 1;
|
|
694
832
|
*/
|
|
695
|
-
|
|
833
|
+
runtimeVersion = "";
|
|
696
834
|
|
|
697
|
-
constructor(data?: PartialMessage<
|
|
835
|
+
constructor(data?: PartialMessage<DeployRequest_ApplicationMetadata>) {
|
|
698
836
|
super();
|
|
699
837
|
proto3.util.initPartial(data, this);
|
|
700
838
|
}
|
|
701
839
|
|
|
702
840
|
static readonly runtime: typeof proto3 = proto3;
|
|
703
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
841
|
+
static readonly typeName = "liquidmetal.v1alpha1.DeployRequest.ApplicationMetadata";
|
|
704
842
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
705
|
-
{ no: 1, name: "
|
|
706
|
-
{ no: 2, name: "next_page_token", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
843
|
+
{ no: 1, name: "runtime_version", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
707
844
|
]);
|
|
708
845
|
|
|
709
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
710
|
-
return new
|
|
846
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeployRequest_ApplicationMetadata {
|
|
847
|
+
return new DeployRequest_ApplicationMetadata().fromBinary(bytes, options);
|
|
711
848
|
}
|
|
712
849
|
|
|
713
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
714
|
-
return new
|
|
850
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeployRequest_ApplicationMetadata {
|
|
851
|
+
return new DeployRequest_ApplicationMetadata().fromJson(jsonValue, options);
|
|
715
852
|
}
|
|
716
853
|
|
|
717
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
718
|
-
return new
|
|
854
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeployRequest_ApplicationMetadata {
|
|
855
|
+
return new DeployRequest_ApplicationMetadata().fromJsonString(jsonString, options);
|
|
719
856
|
}
|
|
720
857
|
|
|
721
|
-
static equals(a:
|
|
722
|
-
return proto3.util.equals(
|
|
858
|
+
static equals(a: DeployRequest_ApplicationMetadata | PlainMessage<DeployRequest_ApplicationMetadata> | undefined, b: DeployRequest_ApplicationMetadata | PlainMessage<DeployRequest_ApplicationMetadata> | undefined): boolean {
|
|
859
|
+
return proto3.util.equals(DeployRequest_ApplicationMetadata, a, b);
|
|
723
860
|
}
|
|
724
861
|
}
|
|
725
862
|
|
|
726
863
|
/**
|
|
727
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
864
|
+
* @generated from message liquidmetal.v1alpha1.DeployRequest.Application
|
|
728
865
|
*/
|
|
729
|
-
export class
|
|
866
|
+
export class DeployRequest_Application extends Message<DeployRequest_Application> {
|
|
730
867
|
/**
|
|
731
|
-
* @generated from field: string
|
|
868
|
+
* @generated from field: string suite = 1;
|
|
732
869
|
*/
|
|
733
|
-
|
|
870
|
+
suite = "";
|
|
734
871
|
|
|
735
872
|
/**
|
|
736
|
-
* @generated from field: string
|
|
873
|
+
* @generated from field: string application = 2;
|
|
737
874
|
*/
|
|
738
|
-
|
|
875
|
+
application = "";
|
|
739
876
|
|
|
740
877
|
/**
|
|
741
|
-
*
|
|
878
|
+
* Required if amend is false.
|
|
879
|
+
*
|
|
880
|
+
* @generated from field: optional string previous_version_id = 3;
|
|
742
881
|
*/
|
|
743
|
-
|
|
882
|
+
previousVersionId?: string;
|
|
744
883
|
|
|
745
884
|
/**
|
|
746
|
-
*
|
|
885
|
+
* Required if amend is true.
|
|
886
|
+
*
|
|
887
|
+
* @generated from field: optional string current_version_id = 4;
|
|
747
888
|
*/
|
|
748
|
-
|
|
889
|
+
currentVersionId?: string;
|
|
749
890
|
|
|
750
891
|
/**
|
|
751
|
-
*
|
|
892
|
+
* If missing, inherits the branch name from the parent (or
|
|
893
|
+
* defaults to "main").
|
|
894
|
+
*
|
|
895
|
+
* @generated from field: optional string branch = 5;
|
|
752
896
|
*/
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
constructor(data?: PartialMessage<VersionsResponse_Version>) {
|
|
756
|
-
super();
|
|
757
|
-
proto3.util.initPartial(data, this);
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
static readonly runtime: typeof proto3 = proto3;
|
|
761
|
-
static readonly typeName = "liquidmetal.v1alpha1.VersionsResponse.Version";
|
|
762
|
-
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
763
|
-
{ no: 1, name: "version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
764
|
-
{ no: 2, name: "previous_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
765
|
-
{ no: 3, name: "is_sandboxed", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
766
|
-
{ no: 4, name: "created_at", kind: "message", T: Timestamp },
|
|
767
|
-
{ no: 5, name: "updated_at", kind: "message", T: Timestamp },
|
|
768
|
-
]);
|
|
769
|
-
|
|
770
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VersionsResponse_Version {
|
|
771
|
-
return new VersionsResponse_Version().fromBinary(bytes, options);
|
|
772
|
-
}
|
|
897
|
+
branch?: string;
|
|
773
898
|
|
|
774
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VersionsResponse_Version {
|
|
775
|
-
return new VersionsResponse_Version().fromJson(jsonValue, options);
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VersionsResponse_Version {
|
|
779
|
-
return new VersionsResponse_Version().fromJsonString(jsonString, options);
|
|
780
|
-
}
|
|
781
|
-
|
|
782
|
-
static equals(a: VersionsResponse_Version | PlainMessage<VersionsResponse_Version> | undefined, b: VersionsResponse_Version | PlainMessage<VersionsResponse_Version> | undefined): boolean {
|
|
783
|
-
return proto3.util.equals(VersionsResponse_Version, a, b);
|
|
784
|
-
}
|
|
785
|
-
}
|
|
786
|
-
|
|
787
|
-
/**
|
|
788
|
-
* @generated from message liquidmetal.v1alpha1.CreateVersionRequest
|
|
789
|
-
*/
|
|
790
|
-
export class CreateVersionRequest extends Message<CreateVersionRequest> {
|
|
791
899
|
/**
|
|
792
|
-
* @generated from field: string
|
|
900
|
+
* @generated from field: string manifest = 6;
|
|
793
901
|
*/
|
|
794
|
-
|
|
902
|
+
manifest = "";
|
|
795
903
|
|
|
796
904
|
/**
|
|
797
|
-
* @generated from field:
|
|
905
|
+
* @generated from field: liquidmetal.v1alpha1.DeployRequest.ApplicationMetadata metadata = 7;
|
|
798
906
|
*/
|
|
799
|
-
|
|
907
|
+
metadata?: DeployRequest_ApplicationMetadata;
|
|
800
908
|
|
|
801
909
|
/**
|
|
802
|
-
* @generated from field:
|
|
910
|
+
* @generated from field: bool amend = 8;
|
|
803
911
|
*/
|
|
804
|
-
|
|
912
|
+
amend = false;
|
|
805
913
|
|
|
806
914
|
/**
|
|
807
|
-
* @generated from field: optional bool
|
|
915
|
+
* @generated from field: optional bool is_active = 9;
|
|
808
916
|
*/
|
|
809
|
-
|
|
917
|
+
isActive?: boolean;
|
|
810
918
|
|
|
811
|
-
constructor(data?: PartialMessage<
|
|
919
|
+
constructor(data?: PartialMessage<DeployRequest_Application>) {
|
|
812
920
|
super();
|
|
813
921
|
proto3.util.initPartial(data, this);
|
|
814
922
|
}
|
|
815
923
|
|
|
816
924
|
static readonly runtime: typeof proto3 = proto3;
|
|
817
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
925
|
+
static readonly typeName = "liquidmetal.v1alpha1.DeployRequest.Application";
|
|
818
926
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
819
|
-
{ no: 1, name: "
|
|
820
|
-
{ no: 2, name: "
|
|
821
|
-
{ no: 3, name: "previous_version_id", kind: "scalar", T: 9 /* ScalarType.STRING
|
|
822
|
-
{ no: 4, name: "
|
|
927
|
+
{ no: 1, name: "suite", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
928
|
+
{ no: 2, name: "application", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
929
|
+
{ no: 3, name: "previous_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
930
|
+
{ no: 4, name: "current_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
931
|
+
{ no: 5, name: "branch", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
932
|
+
{ no: 6, name: "manifest", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
933
|
+
{ no: 7, name: "metadata", kind: "message", T: DeployRequest_ApplicationMetadata },
|
|
934
|
+
{ no: 8, name: "amend", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
935
|
+
{ no: 9, name: "is_active", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
823
936
|
]);
|
|
824
937
|
|
|
825
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
826
|
-
return new
|
|
938
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeployRequest_Application {
|
|
939
|
+
return new DeployRequest_Application().fromBinary(bytes, options);
|
|
827
940
|
}
|
|
828
941
|
|
|
829
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
830
|
-
return new
|
|
942
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeployRequest_Application {
|
|
943
|
+
return new DeployRequest_Application().fromJson(jsonValue, options);
|
|
831
944
|
}
|
|
832
945
|
|
|
833
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
834
|
-
return new
|
|
946
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeployRequest_Application {
|
|
947
|
+
return new DeployRequest_Application().fromJsonString(jsonString, options);
|
|
835
948
|
}
|
|
836
949
|
|
|
837
|
-
static equals(a:
|
|
838
|
-
return proto3.util.equals(
|
|
950
|
+
static equals(a: DeployRequest_Application | PlainMessage<DeployRequest_Application> | undefined, b: DeployRequest_Application | PlainMessage<DeployRequest_Application> | undefined): boolean {
|
|
951
|
+
return proto3.util.equals(DeployRequest_Application, a, b);
|
|
839
952
|
}
|
|
840
953
|
}
|
|
841
954
|
|
|
842
955
|
/**
|
|
843
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
956
|
+
* @generated from message liquidmetal.v1alpha1.DeployResponse
|
|
844
957
|
*/
|
|
845
|
-
export class
|
|
958
|
+
export class DeployResponse extends Message<DeployResponse> {
|
|
846
959
|
/**
|
|
847
|
-
* @generated from field: string
|
|
960
|
+
* @generated from field: string organization_id = 1;
|
|
848
961
|
*/
|
|
849
|
-
|
|
962
|
+
organizationId = "";
|
|
850
963
|
|
|
851
964
|
/**
|
|
852
|
-
* @generated from field:
|
|
965
|
+
* @generated from field: repeated liquidmetal.v1alpha1.DeployResponse.Application applications = 2;
|
|
853
966
|
*/
|
|
854
|
-
|
|
967
|
+
applications: DeployResponse_Application[] = [];
|
|
855
968
|
|
|
856
|
-
|
|
857
|
-
* @generated from field: bool is_sandboxed = 3;
|
|
858
|
-
*/
|
|
859
|
-
isSandboxed = false;
|
|
860
|
-
|
|
861
|
-
constructor(data?: PartialMessage<CreateVersionResponse>) {
|
|
969
|
+
constructor(data?: PartialMessage<DeployResponse>) {
|
|
862
970
|
super();
|
|
863
971
|
proto3.util.initPartial(data, this);
|
|
864
972
|
}
|
|
865
973
|
|
|
866
974
|
static readonly runtime: typeof proto3 = proto3;
|
|
867
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
975
|
+
static readonly typeName = "liquidmetal.v1alpha1.DeployResponse";
|
|
868
976
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
869
|
-
{ no: 1, name: "
|
|
870
|
-
{ no: 2, name: "
|
|
871
|
-
{ no: 3, name: "is_sandboxed", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
977
|
+
{ no: 1, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
978
|
+
{ no: 2, name: "applications", kind: "message", T: DeployResponse_Application, repeated: true },
|
|
872
979
|
]);
|
|
873
980
|
|
|
874
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
875
|
-
return new
|
|
981
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeployResponse {
|
|
982
|
+
return new DeployResponse().fromBinary(bytes, options);
|
|
876
983
|
}
|
|
877
984
|
|
|
878
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
879
|
-
return new
|
|
985
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeployResponse {
|
|
986
|
+
return new DeployResponse().fromJson(jsonValue, options);
|
|
880
987
|
}
|
|
881
988
|
|
|
882
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
883
|
-
return new
|
|
989
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeployResponse {
|
|
990
|
+
return new DeployResponse().fromJsonString(jsonString, options);
|
|
884
991
|
}
|
|
885
992
|
|
|
886
|
-
static equals(a:
|
|
887
|
-
return proto3.util.equals(
|
|
993
|
+
static equals(a: DeployResponse | PlainMessage<DeployResponse> | undefined, b: DeployResponse | PlainMessage<DeployResponse> | undefined): boolean {
|
|
994
|
+
return proto3.util.equals(DeployResponse, a, b);
|
|
888
995
|
}
|
|
889
996
|
}
|
|
890
997
|
|
|
891
998
|
/**
|
|
892
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
999
|
+
* @generated from message liquidmetal.v1alpha1.DeployResponse.Application
|
|
893
1000
|
*/
|
|
894
|
-
export class
|
|
1001
|
+
export class DeployResponse_Application extends Message<DeployResponse_Application> {
|
|
895
1002
|
/**
|
|
896
|
-
* @generated from field:
|
|
1003
|
+
* @generated from field: string application_name = 1;
|
|
897
1004
|
*/
|
|
898
|
-
|
|
1005
|
+
applicationName = "";
|
|
899
1006
|
|
|
900
1007
|
/**
|
|
901
|
-
* @generated from field: string
|
|
1008
|
+
* @generated from field: string current_version_id = 2;
|
|
902
1009
|
*/
|
|
903
|
-
|
|
1010
|
+
currentVersionId = "";
|
|
904
1011
|
|
|
905
1012
|
/**
|
|
906
|
-
* @generated from field: string
|
|
1013
|
+
* @generated from field: string branch = 3;
|
|
907
1014
|
*/
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
constructor(data?: PartialMessage<SetVersionSandboxStatesRequest>) {
|
|
911
|
-
super();
|
|
912
|
-
proto3.util.initPartial(data, this);
|
|
913
|
-
}
|
|
914
|
-
|
|
915
|
-
static readonly runtime: typeof proto3 = proto3;
|
|
916
|
-
static readonly typeName = "liquidmetal.v1alpha1.SetVersionSandboxStatesRequest";
|
|
917
|
-
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
918
|
-
{ no: 1, name: "versions", kind: "message", T: SetVersionSandboxStatesRequest_Version, repeated: true },
|
|
919
|
-
{ no: 2, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
920
|
-
{ no: 3, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
921
|
-
]);
|
|
922
|
-
|
|
923
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetVersionSandboxStatesRequest {
|
|
924
|
-
return new SetVersionSandboxStatesRequest().fromBinary(bytes, options);
|
|
925
|
-
}
|
|
926
|
-
|
|
927
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetVersionSandboxStatesRequest {
|
|
928
|
-
return new SetVersionSandboxStatesRequest().fromJson(jsonValue, options);
|
|
929
|
-
}
|
|
930
|
-
|
|
931
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetVersionSandboxStatesRequest {
|
|
932
|
-
return new SetVersionSandboxStatesRequest().fromJsonString(jsonString, options);
|
|
933
|
-
}
|
|
1015
|
+
branch = "";
|
|
934
1016
|
|
|
935
|
-
static equals(a: SetVersionSandboxStatesRequest | PlainMessage<SetVersionSandboxStatesRequest> | undefined, b: SetVersionSandboxStatesRequest | PlainMessage<SetVersionSandboxStatesRequest> | undefined): boolean {
|
|
936
|
-
return proto3.util.equals(SetVersionSandboxStatesRequest, a, b);
|
|
937
|
-
}
|
|
938
|
-
}
|
|
939
|
-
|
|
940
|
-
/**
|
|
941
|
-
* @generated from message liquidmetal.v1alpha1.SetVersionSandboxStatesRequest.Version
|
|
942
|
-
*/
|
|
943
|
-
export class SetVersionSandboxStatesRequest_Version extends Message<SetVersionSandboxStatesRequest_Version> {
|
|
944
1017
|
/**
|
|
945
|
-
* @generated from field: string
|
|
1018
|
+
* @generated from field: string lock = 4;
|
|
946
1019
|
*/
|
|
947
|
-
|
|
1020
|
+
lock = "";
|
|
948
1021
|
|
|
949
|
-
|
|
950
|
-
* @generated from field: bool is_sandboxed = 2;
|
|
951
|
-
*/
|
|
952
|
-
isSandboxed = false;
|
|
953
|
-
|
|
954
|
-
constructor(data?: PartialMessage<SetVersionSandboxStatesRequest_Version>) {
|
|
1022
|
+
constructor(data?: PartialMessage<DeployResponse_Application>) {
|
|
955
1023
|
super();
|
|
956
1024
|
proto3.util.initPartial(data, this);
|
|
957
1025
|
}
|
|
958
1026
|
|
|
959
1027
|
static readonly runtime: typeof proto3 = proto3;
|
|
960
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1028
|
+
static readonly typeName = "liquidmetal.v1alpha1.DeployResponse.Application";
|
|
961
1029
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
962
|
-
{ no: 1, name: "
|
|
963
|
-
{ no: 2, name: "
|
|
1030
|
+
{ no: 1, name: "application_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1031
|
+
{ no: 2, name: "current_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1032
|
+
{ no: 3, name: "branch", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1033
|
+
{ no: 4, name: "lock", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
964
1034
|
]);
|
|
965
1035
|
|
|
966
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
967
|
-
return new
|
|
1036
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeployResponse_Application {
|
|
1037
|
+
return new DeployResponse_Application().fromBinary(bytes, options);
|
|
968
1038
|
}
|
|
969
1039
|
|
|
970
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
971
|
-
return new
|
|
1040
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeployResponse_Application {
|
|
1041
|
+
return new DeployResponse_Application().fromJson(jsonValue, options);
|
|
972
1042
|
}
|
|
973
1043
|
|
|
974
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
975
|
-
return new
|
|
1044
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeployResponse_Application {
|
|
1045
|
+
return new DeployResponse_Application().fromJsonString(jsonString, options);
|
|
976
1046
|
}
|
|
977
1047
|
|
|
978
|
-
static equals(a:
|
|
979
|
-
return proto3.util.equals(
|
|
1048
|
+
static equals(a: DeployResponse_Application | PlainMessage<DeployResponse_Application> | undefined, b: DeployResponse_Application | PlainMessage<DeployResponse_Application> | undefined): boolean {
|
|
1049
|
+
return proto3.util.equals(DeployResponse_Application, a, b);
|
|
980
1050
|
}
|
|
981
1051
|
}
|
|
982
1052
|
|
|
983
1053
|
/**
|
|
984
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1054
|
+
* @generated from message liquidmetal.v1alpha1.SetEnvsRequest
|
|
985
1055
|
*/
|
|
986
|
-
export class
|
|
1056
|
+
export class SetEnvsRequest extends Message<SetEnvsRequest> {
|
|
987
1057
|
/**
|
|
988
|
-
* @generated from field:
|
|
1058
|
+
* @generated from field: string user_id = 1;
|
|
989
1059
|
*/
|
|
990
|
-
|
|
1060
|
+
userId = "";
|
|
991
1061
|
|
|
992
1062
|
/**
|
|
993
|
-
* @generated from field:
|
|
1063
|
+
* @generated from field: string organization_id = 2;
|
|
994
1064
|
*/
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
constructor(data?: PartialMessage<SetVersionSandboxStatesResponse>) {
|
|
998
|
-
super();
|
|
999
|
-
proto3.util.initPartial(data, this);
|
|
1000
|
-
}
|
|
1001
|
-
|
|
1002
|
-
static readonly runtime: typeof proto3 = proto3;
|
|
1003
|
-
static readonly typeName = "liquidmetal.v1alpha1.SetVersionSandboxStatesResponse";
|
|
1004
|
-
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1005
|
-
{ no: 1, name: "success", kind: "message", T: SetVersionSandboxStatesResponse_Version, repeated: true },
|
|
1006
|
-
{ no: 2, name: "failure", kind: "message", T: SetVersionSandboxStatesResponse_Version, repeated: true },
|
|
1007
|
-
]);
|
|
1008
|
-
|
|
1009
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetVersionSandboxStatesResponse {
|
|
1010
|
-
return new SetVersionSandboxStatesResponse().fromBinary(bytes, options);
|
|
1011
|
-
}
|
|
1012
|
-
|
|
1013
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetVersionSandboxStatesResponse {
|
|
1014
|
-
return new SetVersionSandboxStatesResponse().fromJson(jsonValue, options);
|
|
1015
|
-
}
|
|
1016
|
-
|
|
1017
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetVersionSandboxStatesResponse {
|
|
1018
|
-
return new SetVersionSandboxStatesResponse().fromJsonString(jsonString, options);
|
|
1019
|
-
}
|
|
1020
|
-
|
|
1021
|
-
static equals(a: SetVersionSandboxStatesResponse | PlainMessage<SetVersionSandboxStatesResponse> | undefined, b: SetVersionSandboxStatesResponse | PlainMessage<SetVersionSandboxStatesResponse> | undefined): boolean {
|
|
1022
|
-
return proto3.util.equals(SetVersionSandboxStatesResponse, a, b);
|
|
1023
|
-
}
|
|
1024
|
-
}
|
|
1065
|
+
organizationId = "";
|
|
1025
1066
|
|
|
1026
|
-
/**
|
|
1027
|
-
* @generated from message liquidmetal.v1alpha1.SetVersionSandboxStatesResponse.Version
|
|
1028
|
-
*/
|
|
1029
|
-
export class SetVersionSandboxStatesResponse_Version extends Message<SetVersionSandboxStatesResponse_Version> {
|
|
1030
1067
|
/**
|
|
1031
|
-
* @generated from field:
|
|
1068
|
+
* @generated from field: repeated liquidmetal.v1alpha1.SetEnvsRequest.Env envs = 3;
|
|
1032
1069
|
*/
|
|
1033
|
-
|
|
1070
|
+
envs: SetEnvsRequest_Env[] = [];
|
|
1034
1071
|
|
|
1035
|
-
constructor(data?: PartialMessage<
|
|
1072
|
+
constructor(data?: PartialMessage<SetEnvsRequest>) {
|
|
1036
1073
|
super();
|
|
1037
1074
|
proto3.util.initPartial(data, this);
|
|
1038
1075
|
}
|
|
1039
1076
|
|
|
1040
1077
|
static readonly runtime: typeof proto3 = proto3;
|
|
1041
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1078
|
+
static readonly typeName = "liquidmetal.v1alpha1.SetEnvsRequest";
|
|
1042
1079
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1043
|
-
{ no: 1, name: "
|
|
1080
|
+
{ no: 1, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1081
|
+
{ no: 2, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1082
|
+
{ no: 3, name: "envs", kind: "message", T: SetEnvsRequest_Env, repeated: true },
|
|
1044
1083
|
]);
|
|
1045
1084
|
|
|
1046
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1047
|
-
return new
|
|
1085
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetEnvsRequest {
|
|
1086
|
+
return new SetEnvsRequest().fromBinary(bytes, options);
|
|
1048
1087
|
}
|
|
1049
1088
|
|
|
1050
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1051
|
-
return new
|
|
1089
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetEnvsRequest {
|
|
1090
|
+
return new SetEnvsRequest().fromJson(jsonValue, options);
|
|
1052
1091
|
}
|
|
1053
1092
|
|
|
1054
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1055
|
-
return new
|
|
1093
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetEnvsRequest {
|
|
1094
|
+
return new SetEnvsRequest().fromJsonString(jsonString, options);
|
|
1056
1095
|
}
|
|
1057
1096
|
|
|
1058
|
-
static equals(a:
|
|
1059
|
-
return proto3.util.equals(
|
|
1097
|
+
static equals(a: SetEnvsRequest | PlainMessage<SetEnvsRequest> | undefined, b: SetEnvsRequest | PlainMessage<SetEnvsRequest> | undefined): boolean {
|
|
1098
|
+
return proto3.util.equals(SetEnvsRequest, a, b);
|
|
1060
1099
|
}
|
|
1061
1100
|
}
|
|
1062
1101
|
|
|
1063
1102
|
/**
|
|
1064
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1103
|
+
* @generated from message liquidmetal.v1alpha1.SetEnvsRequest.Env
|
|
1065
1104
|
*/
|
|
1066
|
-
export class
|
|
1067
|
-
/**
|
|
1068
|
-
* @generated from field: string user_id = 1;
|
|
1069
|
-
*/
|
|
1070
|
-
userId = "";
|
|
1071
|
-
|
|
1105
|
+
export class SetEnvsRequest_Env extends Message<SetEnvsRequest_Env> {
|
|
1072
1106
|
/**
|
|
1073
|
-
* @generated from field: string
|
|
1074
|
-
*/
|
|
1075
|
-
organizationId = "";
|
|
1076
|
-
|
|
1077
|
-
/**
|
|
1078
|
-
* @generated from field: string application_name = 3;
|
|
1107
|
+
* @generated from field: string application_name = 1;
|
|
1079
1108
|
*/
|
|
1080
1109
|
applicationName = "";
|
|
1081
1110
|
|
|
1082
1111
|
/**
|
|
1083
|
-
* @generated from field: string
|
|
1112
|
+
* @generated from field: string current_version_id = 2;
|
|
1084
1113
|
*/
|
|
1085
|
-
|
|
1114
|
+
currentVersionId = "";
|
|
1086
1115
|
|
|
1087
1116
|
/**
|
|
1088
|
-
* @generated from field: string
|
|
1117
|
+
* @generated from field: string key = 3;
|
|
1089
1118
|
*/
|
|
1090
|
-
|
|
1119
|
+
key = "";
|
|
1091
1120
|
|
|
1092
1121
|
/**
|
|
1093
|
-
* @generated from field:
|
|
1122
|
+
* @generated from field: string value = 4;
|
|
1094
1123
|
*/
|
|
1095
|
-
|
|
1124
|
+
value = "";
|
|
1096
1125
|
|
|
1097
1126
|
/**
|
|
1098
|
-
* @generated from field:
|
|
1127
|
+
* @generated from field: bool is_secret = 5;
|
|
1099
1128
|
*/
|
|
1100
|
-
|
|
1129
|
+
isSecret = false;
|
|
1101
1130
|
|
|
1102
|
-
constructor(data?: PartialMessage<
|
|
1131
|
+
constructor(data?: PartialMessage<SetEnvsRequest_Env>) {
|
|
1103
1132
|
super();
|
|
1104
1133
|
proto3.util.initPartial(data, this);
|
|
1105
1134
|
}
|
|
1106
1135
|
|
|
1107
1136
|
static readonly runtime: typeof proto3 = proto3;
|
|
1108
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1137
|
+
static readonly typeName = "liquidmetal.v1alpha1.SetEnvsRequest.Env";
|
|
1109
1138
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1110
|
-
{ no: 1, name: "
|
|
1111
|
-
{ no: 2, name: "
|
|
1112
|
-
{ no: 3, name: "
|
|
1113
|
-
{ no: 4, name: "
|
|
1114
|
-
{ no: 5, name: "
|
|
1115
|
-
{ no: 6, name: "archive_type", kind: "enum", T: proto3.getEnumType(BundleArchiveType) },
|
|
1116
|
-
{ no: 7, name: "archive", kind: "scalar", T: 12 /* ScalarType.BYTES */ },
|
|
1139
|
+
{ no: 1, name: "application_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1140
|
+
{ no: 2, name: "current_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1141
|
+
{ no: 3, name: "key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1142
|
+
{ no: 4, name: "value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1143
|
+
{ no: 5, name: "is_secret", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1117
1144
|
]);
|
|
1118
1145
|
|
|
1119
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1120
|
-
return new
|
|
1146
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetEnvsRequest_Env {
|
|
1147
|
+
return new SetEnvsRequest_Env().fromBinary(bytes, options);
|
|
1121
1148
|
}
|
|
1122
1149
|
|
|
1123
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1124
|
-
return new
|
|
1150
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetEnvsRequest_Env {
|
|
1151
|
+
return new SetEnvsRequest_Env().fromJson(jsonValue, options);
|
|
1125
1152
|
}
|
|
1126
1153
|
|
|
1127
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1128
|
-
return new
|
|
1154
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetEnvsRequest_Env {
|
|
1155
|
+
return new SetEnvsRequest_Env().fromJsonString(jsonString, options);
|
|
1129
1156
|
}
|
|
1130
1157
|
|
|
1131
|
-
static equals(a:
|
|
1132
|
-
return proto3.util.equals(
|
|
1158
|
+
static equals(a: SetEnvsRequest_Env | PlainMessage<SetEnvsRequest_Env> | undefined, b: SetEnvsRequest_Env | PlainMessage<SetEnvsRequest_Env> | undefined): boolean {
|
|
1159
|
+
return proto3.util.equals(SetEnvsRequest_Env, a, b);
|
|
1133
1160
|
}
|
|
1134
1161
|
}
|
|
1135
1162
|
|
|
1136
1163
|
/**
|
|
1137
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1164
|
+
* @generated from message liquidmetal.v1alpha1.SetEnvsResponse
|
|
1138
1165
|
*/
|
|
1139
|
-
export class
|
|
1140
|
-
constructor(data?: PartialMessage<
|
|
1166
|
+
export class SetEnvsResponse extends Message<SetEnvsResponse> {
|
|
1167
|
+
constructor(data?: PartialMessage<SetEnvsResponse>) {
|
|
1141
1168
|
super();
|
|
1142
1169
|
proto3.util.initPartial(data, this);
|
|
1143
1170
|
}
|
|
1144
1171
|
|
|
1145
1172
|
static readonly runtime: typeof proto3 = proto3;
|
|
1146
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1173
|
+
static readonly typeName = "liquidmetal.v1alpha1.SetEnvsResponse";
|
|
1147
1174
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1148
1175
|
]);
|
|
1149
1176
|
|
|
1150
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1151
|
-
return new
|
|
1177
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetEnvsResponse {
|
|
1178
|
+
return new SetEnvsResponse().fromBinary(bytes, options);
|
|
1152
1179
|
}
|
|
1153
1180
|
|
|
1154
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1155
|
-
return new
|
|
1181
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetEnvsResponse {
|
|
1182
|
+
return new SetEnvsResponse().fromJson(jsonValue, options);
|
|
1156
1183
|
}
|
|
1157
1184
|
|
|
1158
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1159
|
-
return new
|
|
1185
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetEnvsResponse {
|
|
1186
|
+
return new SetEnvsResponse().fromJsonString(jsonString, options);
|
|
1160
1187
|
}
|
|
1161
1188
|
|
|
1162
|
-
static equals(a:
|
|
1163
|
-
return proto3.util.equals(
|
|
1189
|
+
static equals(a: SetEnvsResponse | PlainMessage<SetEnvsResponse> | undefined, b: SetEnvsResponse | PlainMessage<SetEnvsResponse> | undefined): boolean {
|
|
1190
|
+
return proto3.util.equals(SetEnvsResponse, a, b);
|
|
1164
1191
|
}
|
|
1165
1192
|
}
|
|
1166
1193
|
|
|
1167
1194
|
/**
|
|
1168
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1195
|
+
* @generated from message liquidmetal.v1alpha1.GetEnvsRequest
|
|
1169
1196
|
*/
|
|
1170
|
-
export class
|
|
1197
|
+
export class GetEnvsRequest extends Message<GetEnvsRequest> {
|
|
1171
1198
|
/**
|
|
1172
1199
|
* @generated from field: string user_id = 1;
|
|
1173
1200
|
*/
|
|
@@ -1179,246 +1206,191 @@ export class StatBundleRequest extends Message<StatBundleRequest> {
|
|
|
1179
1206
|
organizationId = "";
|
|
1180
1207
|
|
|
1181
1208
|
/**
|
|
1182
|
-
* @generated from field:
|
|
1183
|
-
*/
|
|
1184
|
-
applicationName = "";
|
|
1185
|
-
|
|
1186
|
-
/**
|
|
1187
|
-
* @generated from field: string application_version_id = 4;
|
|
1188
|
-
*/
|
|
1189
|
-
applicationVersionId = "";
|
|
1190
|
-
|
|
1191
|
-
/**
|
|
1192
|
-
* @generated from field: string bundle_name = 5;
|
|
1209
|
+
* @generated from field: repeated liquidmetal.v1alpha1.GetEnvsRequest.Env envs = 3;
|
|
1193
1210
|
*/
|
|
1194
|
-
|
|
1211
|
+
envs: GetEnvsRequest_Env[] = [];
|
|
1195
1212
|
|
|
1196
|
-
constructor(data?: PartialMessage<
|
|
1213
|
+
constructor(data?: PartialMessage<GetEnvsRequest>) {
|
|
1197
1214
|
super();
|
|
1198
1215
|
proto3.util.initPartial(data, this);
|
|
1199
1216
|
}
|
|
1200
1217
|
|
|
1201
1218
|
static readonly runtime: typeof proto3 = proto3;
|
|
1202
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1219
|
+
static readonly typeName = "liquidmetal.v1alpha1.GetEnvsRequest";
|
|
1203
1220
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1204
1221
|
{ no: 1, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1205
1222
|
{ no: 2, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1206
|
-
{ no: 3, name: "
|
|
1207
|
-
{ no: 4, name: "application_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1208
|
-
{ no: 5, name: "bundle_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1223
|
+
{ no: 3, name: "envs", kind: "message", T: GetEnvsRequest_Env, repeated: true },
|
|
1209
1224
|
]);
|
|
1210
1225
|
|
|
1211
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1212
|
-
return new
|
|
1226
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetEnvsRequest {
|
|
1227
|
+
return new GetEnvsRequest().fromBinary(bytes, options);
|
|
1213
1228
|
}
|
|
1214
1229
|
|
|
1215
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1216
|
-
return new
|
|
1230
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetEnvsRequest {
|
|
1231
|
+
return new GetEnvsRequest().fromJson(jsonValue, options);
|
|
1217
1232
|
}
|
|
1218
1233
|
|
|
1219
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1220
|
-
return new
|
|
1234
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetEnvsRequest {
|
|
1235
|
+
return new GetEnvsRequest().fromJsonString(jsonString, options);
|
|
1221
1236
|
}
|
|
1222
1237
|
|
|
1223
|
-
static equals(a:
|
|
1224
|
-
return proto3.util.equals(
|
|
1238
|
+
static equals(a: GetEnvsRequest | PlainMessage<GetEnvsRequest> | undefined, b: GetEnvsRequest | PlainMessage<GetEnvsRequest> | undefined): boolean {
|
|
1239
|
+
return proto3.util.equals(GetEnvsRequest, a, b);
|
|
1225
1240
|
}
|
|
1226
1241
|
}
|
|
1227
1242
|
|
|
1228
1243
|
/**
|
|
1229
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1244
|
+
* @generated from message liquidmetal.v1alpha1.GetEnvsRequest.Env
|
|
1230
1245
|
*/
|
|
1231
|
-
export class
|
|
1246
|
+
export class GetEnvsRequest_Env extends Message<GetEnvsRequest_Env> {
|
|
1247
|
+
/**
|
|
1248
|
+
* @generated from field: string application_name = 1;
|
|
1249
|
+
*/
|
|
1250
|
+
applicationName = "";
|
|
1251
|
+
|
|
1232
1252
|
/**
|
|
1233
|
-
* @generated from field:
|
|
1253
|
+
* @generated from field: string current_version_id = 2;
|
|
1234
1254
|
*/
|
|
1235
|
-
|
|
1255
|
+
currentVersionId = "";
|
|
1236
1256
|
|
|
1237
|
-
|
|
1257
|
+
/**
|
|
1258
|
+
* @generated from field: string key = 3;
|
|
1259
|
+
*/
|
|
1260
|
+
key = "";
|
|
1261
|
+
|
|
1262
|
+
constructor(data?: PartialMessage<GetEnvsRequest_Env>) {
|
|
1238
1263
|
super();
|
|
1239
1264
|
proto3.util.initPartial(data, this);
|
|
1240
1265
|
}
|
|
1241
1266
|
|
|
1242
1267
|
static readonly runtime: typeof proto3 = proto3;
|
|
1243
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1268
|
+
static readonly typeName = "liquidmetal.v1alpha1.GetEnvsRequest.Env";
|
|
1244
1269
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1245
|
-
{ no: 1, name: "
|
|
1270
|
+
{ no: 1, name: "application_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1271
|
+
{ no: 2, name: "current_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1272
|
+
{ no: 3, name: "key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1246
1273
|
]);
|
|
1247
1274
|
|
|
1248
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1249
|
-
return new
|
|
1275
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetEnvsRequest_Env {
|
|
1276
|
+
return new GetEnvsRequest_Env().fromBinary(bytes, options);
|
|
1250
1277
|
}
|
|
1251
1278
|
|
|
1252
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1253
|
-
return new
|
|
1279
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetEnvsRequest_Env {
|
|
1280
|
+
return new GetEnvsRequest_Env().fromJson(jsonValue, options);
|
|
1254
1281
|
}
|
|
1255
1282
|
|
|
1256
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1257
|
-
return new
|
|
1283
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetEnvsRequest_Env {
|
|
1284
|
+
return new GetEnvsRequest_Env().fromJsonString(jsonString, options);
|
|
1258
1285
|
}
|
|
1259
1286
|
|
|
1260
|
-
static equals(a:
|
|
1261
|
-
return proto3.util.equals(
|
|
1287
|
+
static equals(a: GetEnvsRequest_Env | PlainMessage<GetEnvsRequest_Env> | undefined, b: GetEnvsRequest_Env | PlainMessage<GetEnvsRequest_Env> | undefined): boolean {
|
|
1288
|
+
return proto3.util.equals(GetEnvsRequest_Env, a, b);
|
|
1262
1289
|
}
|
|
1263
1290
|
}
|
|
1264
1291
|
|
|
1265
1292
|
/**
|
|
1266
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1293
|
+
* @generated from message liquidmetal.v1alpha1.GetEnvsResponse
|
|
1267
1294
|
*/
|
|
1268
|
-
export class
|
|
1269
|
-
/**
|
|
1270
|
-
* @generated from field: string name = 1;
|
|
1271
|
-
*/
|
|
1272
|
-
name = "";
|
|
1273
|
-
|
|
1274
|
-
/**
|
|
1275
|
-
* @generated from field: int32 size_bytes = 2;
|
|
1276
|
-
*/
|
|
1277
|
-
sizeBytes = 0;
|
|
1278
|
-
|
|
1295
|
+
export class GetEnvsResponse extends Message<GetEnvsResponse> {
|
|
1279
1296
|
/**
|
|
1280
|
-
* @generated from field:
|
|
1297
|
+
* @generated from field: repeated liquidmetal.v1alpha1.GetEnvsResponse.Env envs = 1;
|
|
1281
1298
|
*/
|
|
1282
|
-
|
|
1299
|
+
envs: GetEnvsResponse_Env[] = [];
|
|
1283
1300
|
|
|
1284
|
-
constructor(data?: PartialMessage<
|
|
1301
|
+
constructor(data?: PartialMessage<GetEnvsResponse>) {
|
|
1285
1302
|
super();
|
|
1286
1303
|
proto3.util.initPartial(data, this);
|
|
1287
1304
|
}
|
|
1288
1305
|
|
|
1289
1306
|
static readonly runtime: typeof proto3 = proto3;
|
|
1290
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1307
|
+
static readonly typeName = "liquidmetal.v1alpha1.GetEnvsResponse";
|
|
1291
1308
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1292
|
-
{ no: 1, name: "
|
|
1293
|
-
{ no: 2, name: "size_bytes", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
1294
|
-
{ no: 3, name: "sha256", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1309
|
+
{ no: 1, name: "envs", kind: "message", T: GetEnvsResponse_Env, repeated: true },
|
|
1295
1310
|
]);
|
|
1296
1311
|
|
|
1297
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1298
|
-
return new
|
|
1312
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetEnvsResponse {
|
|
1313
|
+
return new GetEnvsResponse().fromBinary(bytes, options);
|
|
1299
1314
|
}
|
|
1300
1315
|
|
|
1301
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1302
|
-
return new
|
|
1316
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetEnvsResponse {
|
|
1317
|
+
return new GetEnvsResponse().fromJson(jsonValue, options);
|
|
1303
1318
|
}
|
|
1304
1319
|
|
|
1305
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1306
|
-
return new
|
|
1320
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetEnvsResponse {
|
|
1321
|
+
return new GetEnvsResponse().fromJsonString(jsonString, options);
|
|
1307
1322
|
}
|
|
1308
1323
|
|
|
1309
|
-
static equals(a:
|
|
1310
|
-
return proto3.util.equals(
|
|
1324
|
+
static equals(a: GetEnvsResponse | PlainMessage<GetEnvsResponse> | undefined, b: GetEnvsResponse | PlainMessage<GetEnvsResponse> | undefined): boolean {
|
|
1325
|
+
return proto3.util.equals(GetEnvsResponse, a, b);
|
|
1311
1326
|
}
|
|
1312
1327
|
}
|
|
1313
1328
|
|
|
1314
1329
|
/**
|
|
1315
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1330
|
+
* @generated from message liquidmetal.v1alpha1.GetEnvsResponse.Env
|
|
1316
1331
|
*/
|
|
1317
|
-
export class
|
|
1332
|
+
export class GetEnvsResponse_Env extends Message<GetEnvsResponse_Env> {
|
|
1318
1333
|
/**
|
|
1319
|
-
* @generated from field: string
|
|
1320
|
-
*/
|
|
1321
|
-
userId = "";
|
|
1322
|
-
|
|
1323
|
-
/**
|
|
1324
|
-
* @generated from field: string organization_id = 2;
|
|
1325
|
-
*/
|
|
1326
|
-
organizationId = "";
|
|
1327
|
-
|
|
1328
|
-
/**
|
|
1329
|
-
* @generated from field: string application_name = 3;
|
|
1334
|
+
* @generated from field: string application_name = 1;
|
|
1330
1335
|
*/
|
|
1331
1336
|
applicationName = "";
|
|
1332
1337
|
|
|
1333
1338
|
/**
|
|
1334
|
-
* @generated from field: string
|
|
1339
|
+
* @generated from field: string current_version_id = 2;
|
|
1335
1340
|
*/
|
|
1336
|
-
|
|
1341
|
+
currentVersionId = "";
|
|
1337
1342
|
|
|
1338
1343
|
/**
|
|
1339
|
-
* @generated from field: string key =
|
|
1344
|
+
* @generated from field: string key = 3;
|
|
1340
1345
|
*/
|
|
1341
1346
|
key = "";
|
|
1342
1347
|
|
|
1343
1348
|
/**
|
|
1344
|
-
* @generated from field: string value =
|
|
1349
|
+
* @generated from field: string value = 4;
|
|
1345
1350
|
*/
|
|
1346
1351
|
value = "";
|
|
1347
1352
|
|
|
1348
1353
|
/**
|
|
1349
|
-
* @generated from field: bool is_secret =
|
|
1354
|
+
* @generated from field: bool is_secret = 5;
|
|
1350
1355
|
*/
|
|
1351
1356
|
isSecret = false;
|
|
1352
1357
|
|
|
1353
|
-
constructor(data?: PartialMessage<
|
|
1358
|
+
constructor(data?: PartialMessage<GetEnvsResponse_Env>) {
|
|
1354
1359
|
super();
|
|
1355
1360
|
proto3.util.initPartial(data, this);
|
|
1356
1361
|
}
|
|
1357
1362
|
|
|
1358
1363
|
static readonly runtime: typeof proto3 = proto3;
|
|
1359
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1364
|
+
static readonly typeName = "liquidmetal.v1alpha1.GetEnvsResponse.Env";
|
|
1360
1365
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1361
|
-
{ no: 1, name: "
|
|
1362
|
-
{ no: 2, name: "
|
|
1363
|
-
{ no: 3, name: "
|
|
1364
|
-
{ no: 4, name: "
|
|
1365
|
-
{ no: 5, name: "
|
|
1366
|
-
{ no: 6, name: "value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1367
|
-
{ no: 7, name: "is_secret", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1366
|
+
{ no: 1, name: "application_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1367
|
+
{ no: 2, name: "current_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1368
|
+
{ no: 3, name: "key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1369
|
+
{ no: 4, name: "value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1370
|
+
{ no: 5, name: "is_secret", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1368
1371
|
]);
|
|
1369
1372
|
|
|
1370
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1371
|
-
return new
|
|
1373
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetEnvsResponse_Env {
|
|
1374
|
+
return new GetEnvsResponse_Env().fromBinary(bytes, options);
|
|
1372
1375
|
}
|
|
1373
1376
|
|
|
1374
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1375
|
-
return new
|
|
1377
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetEnvsResponse_Env {
|
|
1378
|
+
return new GetEnvsResponse_Env().fromJson(jsonValue, options);
|
|
1376
1379
|
}
|
|
1377
1380
|
|
|
1378
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1379
|
-
return new
|
|
1381
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetEnvsResponse_Env {
|
|
1382
|
+
return new GetEnvsResponse_Env().fromJsonString(jsonString, options);
|
|
1380
1383
|
}
|
|
1381
1384
|
|
|
1382
|
-
static equals(a:
|
|
1383
|
-
return proto3.util.equals(
|
|
1385
|
+
static equals(a: GetEnvsResponse_Env | PlainMessage<GetEnvsResponse_Env> | undefined, b: GetEnvsResponse_Env | PlainMessage<GetEnvsResponse_Env> | undefined): boolean {
|
|
1386
|
+
return proto3.util.equals(GetEnvsResponse_Env, a, b);
|
|
1384
1387
|
}
|
|
1385
1388
|
}
|
|
1386
1389
|
|
|
1387
1390
|
/**
|
|
1388
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1391
|
+
* @generated from message liquidmetal.v1alpha1.ReleaseRequest
|
|
1389
1392
|
*/
|
|
1390
|
-
export class
|
|
1391
|
-
constructor(data?: PartialMessage<SetEnvResponse>) {
|
|
1392
|
-
super();
|
|
1393
|
-
proto3.util.initPartial(data, this);
|
|
1394
|
-
}
|
|
1395
|
-
|
|
1396
|
-
static readonly runtime: typeof proto3 = proto3;
|
|
1397
|
-
static readonly typeName = "liquidmetal.v1alpha1.SetEnvResponse";
|
|
1398
|
-
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1399
|
-
]);
|
|
1400
|
-
|
|
1401
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetEnvResponse {
|
|
1402
|
-
return new SetEnvResponse().fromBinary(bytes, options);
|
|
1403
|
-
}
|
|
1404
|
-
|
|
1405
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetEnvResponse {
|
|
1406
|
-
return new SetEnvResponse().fromJson(jsonValue, options);
|
|
1407
|
-
}
|
|
1408
|
-
|
|
1409
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetEnvResponse {
|
|
1410
|
-
return new SetEnvResponse().fromJsonString(jsonString, options);
|
|
1411
|
-
}
|
|
1412
|
-
|
|
1413
|
-
static equals(a: SetEnvResponse | PlainMessage<SetEnvResponse> | undefined, b: SetEnvResponse | PlainMessage<SetEnvResponse> | undefined): boolean {
|
|
1414
|
-
return proto3.util.equals(SetEnvResponse, a, b);
|
|
1415
|
-
}
|
|
1416
|
-
}
|
|
1417
|
-
|
|
1418
|
-
/**
|
|
1419
|
-
* @generated from message liquidmetal.v1alpha1.GetEnvRequest
|
|
1420
|
-
*/
|
|
1421
|
-
export class GetEnvRequest extends Message<GetEnvRequest> {
|
|
1393
|
+
export class ReleaseRequest extends Message<ReleaseRequest> {
|
|
1422
1394
|
/**
|
|
1423
1395
|
* @generated from field: string user_id = 1;
|
|
1424
1396
|
*/
|
|
@@ -1430,688 +1402,652 @@ export class GetEnvRequest extends Message<GetEnvRequest> {
|
|
|
1430
1402
|
organizationId = "";
|
|
1431
1403
|
|
|
1432
1404
|
/**
|
|
1433
|
-
* @generated from field:
|
|
1434
|
-
*/
|
|
1435
|
-
applicationName = "";
|
|
1436
|
-
|
|
1437
|
-
/**
|
|
1438
|
-
* @generated from field: string application_version_id = 4;
|
|
1439
|
-
*/
|
|
1440
|
-
applicationVersionId = "";
|
|
1441
|
-
|
|
1442
|
-
/**
|
|
1443
|
-
* @generated from field: string key = 5;
|
|
1405
|
+
* @generated from field: repeated liquidmetal.v1alpha1.ReleaseRequest.Lock locks = 3;
|
|
1444
1406
|
*/
|
|
1445
|
-
|
|
1407
|
+
locks: ReleaseRequest_Lock[] = [];
|
|
1446
1408
|
|
|
1447
|
-
constructor(data?: PartialMessage<
|
|
1409
|
+
constructor(data?: PartialMessage<ReleaseRequest>) {
|
|
1448
1410
|
super();
|
|
1449
1411
|
proto3.util.initPartial(data, this);
|
|
1450
1412
|
}
|
|
1451
1413
|
|
|
1452
1414
|
static readonly runtime: typeof proto3 = proto3;
|
|
1453
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1415
|
+
static readonly typeName = "liquidmetal.v1alpha1.ReleaseRequest";
|
|
1454
1416
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1455
1417
|
{ no: 1, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1456
1418
|
{ no: 2, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1457
|
-
{ no: 3, name: "
|
|
1458
|
-
{ no: 4, name: "application_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1459
|
-
{ no: 5, name: "key", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1419
|
+
{ no: 3, name: "locks", kind: "message", T: ReleaseRequest_Lock, repeated: true },
|
|
1460
1420
|
]);
|
|
1461
1421
|
|
|
1462
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1463
|
-
return new
|
|
1422
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ReleaseRequest {
|
|
1423
|
+
return new ReleaseRequest().fromBinary(bytes, options);
|
|
1464
1424
|
}
|
|
1465
1425
|
|
|
1466
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1467
|
-
return new
|
|
1426
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ReleaseRequest {
|
|
1427
|
+
return new ReleaseRequest().fromJson(jsonValue, options);
|
|
1468
1428
|
}
|
|
1469
1429
|
|
|
1470
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1471
|
-
return new
|
|
1430
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ReleaseRequest {
|
|
1431
|
+
return new ReleaseRequest().fromJsonString(jsonString, options);
|
|
1472
1432
|
}
|
|
1473
1433
|
|
|
1474
|
-
static equals(a:
|
|
1475
|
-
return proto3.util.equals(
|
|
1434
|
+
static equals(a: ReleaseRequest | PlainMessage<ReleaseRequest> | undefined, b: ReleaseRequest | PlainMessage<ReleaseRequest> | undefined): boolean {
|
|
1435
|
+
return proto3.util.equals(ReleaseRequest, a, b);
|
|
1476
1436
|
}
|
|
1477
1437
|
}
|
|
1478
1438
|
|
|
1479
1439
|
/**
|
|
1480
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1440
|
+
* @generated from message liquidmetal.v1alpha1.ReleaseRequest.Lock
|
|
1481
1441
|
*/
|
|
1482
|
-
export class
|
|
1442
|
+
export class ReleaseRequest_Lock extends Message<ReleaseRequest_Lock> {
|
|
1443
|
+
/**
|
|
1444
|
+
* @generated from field: string application_name = 1;
|
|
1445
|
+
*/
|
|
1446
|
+
applicationName = "";
|
|
1447
|
+
|
|
1483
1448
|
/**
|
|
1484
|
-
* @generated from field:
|
|
1449
|
+
* @generated from field: string current_version_id = 2;
|
|
1485
1450
|
*/
|
|
1486
|
-
|
|
1451
|
+
currentVersionId = "";
|
|
1487
1452
|
|
|
1488
1453
|
/**
|
|
1489
|
-
* @generated from field:
|
|
1454
|
+
* @generated from field: string lock = 3;
|
|
1490
1455
|
*/
|
|
1491
|
-
|
|
1456
|
+
lock = "";
|
|
1492
1457
|
|
|
1493
|
-
constructor(data?: PartialMessage<
|
|
1458
|
+
constructor(data?: PartialMessage<ReleaseRequest_Lock>) {
|
|
1494
1459
|
super();
|
|
1495
1460
|
proto3.util.initPartial(data, this);
|
|
1496
1461
|
}
|
|
1497
1462
|
|
|
1498
1463
|
static readonly runtime: typeof proto3 = proto3;
|
|
1499
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1464
|
+
static readonly typeName = "liquidmetal.v1alpha1.ReleaseRequest.Lock";
|
|
1500
1465
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1501
|
-
{ no: 1, name: "
|
|
1502
|
-
{ no: 2, name: "
|
|
1466
|
+
{ no: 1, name: "application_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1467
|
+
{ no: 2, name: "current_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1468
|
+
{ no: 3, name: "lock", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1503
1469
|
]);
|
|
1504
1470
|
|
|
1505
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1506
|
-
return new
|
|
1471
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ReleaseRequest_Lock {
|
|
1472
|
+
return new ReleaseRequest_Lock().fromBinary(bytes, options);
|
|
1507
1473
|
}
|
|
1508
1474
|
|
|
1509
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1510
|
-
return new
|
|
1475
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ReleaseRequest_Lock {
|
|
1476
|
+
return new ReleaseRequest_Lock().fromJson(jsonValue, options);
|
|
1511
1477
|
}
|
|
1512
1478
|
|
|
1513
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1514
|
-
return new
|
|
1479
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ReleaseRequest_Lock {
|
|
1480
|
+
return new ReleaseRequest_Lock().fromJsonString(jsonString, options);
|
|
1515
1481
|
}
|
|
1516
1482
|
|
|
1517
|
-
static equals(a:
|
|
1518
|
-
return proto3.util.equals(
|
|
1483
|
+
static equals(a: ReleaseRequest_Lock | PlainMessage<ReleaseRequest_Lock> | undefined, b: ReleaseRequest_Lock | PlainMessage<ReleaseRequest_Lock> | undefined): boolean {
|
|
1484
|
+
return proto3.util.equals(ReleaseRequest_Lock, a, b);
|
|
1519
1485
|
}
|
|
1520
1486
|
}
|
|
1521
1487
|
|
|
1522
1488
|
/**
|
|
1523
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1489
|
+
* @generated from message liquidmetal.v1alpha1.ReleaseResponse
|
|
1524
1490
|
*/
|
|
1525
|
-
export class
|
|
1526
|
-
|
|
1527
|
-
* @generated from field: repeated liquidmetal.v1alpha1.SetApplicationActiveStatesRequest.State states = 1;
|
|
1528
|
-
*/
|
|
1529
|
-
states: SetApplicationActiveStatesRequest_State[] = [];
|
|
1530
|
-
|
|
1531
|
-
/**
|
|
1532
|
-
* @generated from field: string user_id = 2;
|
|
1533
|
-
*/
|
|
1534
|
-
userId = "";
|
|
1535
|
-
|
|
1536
|
-
/**
|
|
1537
|
-
* @generated from field: string organization_id = 3;
|
|
1538
|
-
*/
|
|
1539
|
-
organizationId = "";
|
|
1540
|
-
|
|
1541
|
-
constructor(data?: PartialMessage<SetApplicationActiveStatesRequest>) {
|
|
1491
|
+
export class ReleaseResponse extends Message<ReleaseResponse> {
|
|
1492
|
+
constructor(data?: PartialMessage<ReleaseResponse>) {
|
|
1542
1493
|
super();
|
|
1543
1494
|
proto3.util.initPartial(data, this);
|
|
1544
1495
|
}
|
|
1545
1496
|
|
|
1546
1497
|
static readonly runtime: typeof proto3 = proto3;
|
|
1547
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1498
|
+
static readonly typeName = "liquidmetal.v1alpha1.ReleaseResponse";
|
|
1548
1499
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1549
|
-
{ no: 1, name: "states", kind: "message", T: SetApplicationActiveStatesRequest_State, repeated: true },
|
|
1550
|
-
{ no: 2, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1551
|
-
{ no: 3, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1552
1500
|
]);
|
|
1553
1501
|
|
|
1554
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1555
|
-
return new
|
|
1502
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ReleaseResponse {
|
|
1503
|
+
return new ReleaseResponse().fromBinary(bytes, options);
|
|
1556
1504
|
}
|
|
1557
1505
|
|
|
1558
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1559
|
-
return new
|
|
1506
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ReleaseResponse {
|
|
1507
|
+
return new ReleaseResponse().fromJson(jsonValue, options);
|
|
1560
1508
|
}
|
|
1561
1509
|
|
|
1562
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1563
|
-
return new
|
|
1510
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ReleaseResponse {
|
|
1511
|
+
return new ReleaseResponse().fromJsonString(jsonString, options);
|
|
1564
1512
|
}
|
|
1565
1513
|
|
|
1566
|
-
static equals(a:
|
|
1567
|
-
return proto3.util.equals(
|
|
1514
|
+
static equals(a: ReleaseResponse | PlainMessage<ReleaseResponse> | undefined, b: ReleaseResponse | PlainMessage<ReleaseResponse> | undefined): boolean {
|
|
1515
|
+
return proto3.util.equals(ReleaseResponse, a, b);
|
|
1568
1516
|
}
|
|
1569
1517
|
}
|
|
1570
1518
|
|
|
1571
1519
|
/**
|
|
1572
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1520
|
+
* @generated from message liquidmetal.v1alpha1.WatchRequest
|
|
1573
1521
|
*/
|
|
1574
|
-
export class
|
|
1522
|
+
export class WatchRequest extends Message<WatchRequest> {
|
|
1575
1523
|
/**
|
|
1576
|
-
* @generated from field: string
|
|
1524
|
+
* @generated from field: string user_id = 1;
|
|
1577
1525
|
*/
|
|
1578
|
-
|
|
1526
|
+
userId = "";
|
|
1579
1527
|
|
|
1580
1528
|
/**
|
|
1581
|
-
* @generated from field: string
|
|
1529
|
+
* @generated from field: string organization_id = 2;
|
|
1582
1530
|
*/
|
|
1583
|
-
|
|
1531
|
+
organizationId = "";
|
|
1584
1532
|
|
|
1585
1533
|
/**
|
|
1586
|
-
* @generated from field:
|
|
1534
|
+
* @generated from field: repeated liquidmetal.v1alpha1.WatchRequest.Application applications = 3;
|
|
1587
1535
|
*/
|
|
1588
|
-
|
|
1536
|
+
applications: WatchRequest_Application[] = [];
|
|
1589
1537
|
|
|
1590
|
-
constructor(data?: PartialMessage<
|
|
1538
|
+
constructor(data?: PartialMessage<WatchRequest>) {
|
|
1591
1539
|
super();
|
|
1592
1540
|
proto3.util.initPartial(data, this);
|
|
1593
1541
|
}
|
|
1594
1542
|
|
|
1595
1543
|
static readonly runtime: typeof proto3 = proto3;
|
|
1596
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1544
|
+
static readonly typeName = "liquidmetal.v1alpha1.WatchRequest";
|
|
1597
1545
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1598
|
-
{ no: 1, name: "
|
|
1599
|
-
{ no: 2, name: "
|
|
1600
|
-
{ no: 3, name: "
|
|
1546
|
+
{ no: 1, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1547
|
+
{ no: 2, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1548
|
+
{ no: 3, name: "applications", kind: "message", T: WatchRequest_Application, repeated: true },
|
|
1601
1549
|
]);
|
|
1602
1550
|
|
|
1603
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1604
|
-
return new
|
|
1551
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WatchRequest {
|
|
1552
|
+
return new WatchRequest().fromBinary(bytes, options);
|
|
1605
1553
|
}
|
|
1606
1554
|
|
|
1607
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1608
|
-
return new
|
|
1555
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WatchRequest {
|
|
1556
|
+
return new WatchRequest().fromJson(jsonValue, options);
|
|
1609
1557
|
}
|
|
1610
1558
|
|
|
1611
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1612
|
-
return new
|
|
1559
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WatchRequest {
|
|
1560
|
+
return new WatchRequest().fromJsonString(jsonString, options);
|
|
1613
1561
|
}
|
|
1614
1562
|
|
|
1615
|
-
static equals(a:
|
|
1616
|
-
return proto3.util.equals(
|
|
1563
|
+
static equals(a: WatchRequest | PlainMessage<WatchRequest> | undefined, b: WatchRequest | PlainMessage<WatchRequest> | undefined): boolean {
|
|
1564
|
+
return proto3.util.equals(WatchRequest, a, b);
|
|
1617
1565
|
}
|
|
1618
1566
|
}
|
|
1619
1567
|
|
|
1620
1568
|
/**
|
|
1621
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1569
|
+
* @generated from message liquidmetal.v1alpha1.WatchRequest.Application
|
|
1622
1570
|
*/
|
|
1623
|
-
export class
|
|
1571
|
+
export class WatchRequest_Application extends Message<WatchRequest_Application> {
|
|
1624
1572
|
/**
|
|
1625
|
-
* @generated from field:
|
|
1573
|
+
* @generated from field: string application_name = 1;
|
|
1626
1574
|
*/
|
|
1627
|
-
|
|
1575
|
+
applicationName = "";
|
|
1628
1576
|
|
|
1629
1577
|
/**
|
|
1630
|
-
* @generated from field:
|
|
1578
|
+
* @generated from field: string current_version_id = 2;
|
|
1631
1579
|
*/
|
|
1632
|
-
|
|
1580
|
+
currentVersionId = "";
|
|
1633
1581
|
|
|
1634
|
-
constructor(data?: PartialMessage<
|
|
1582
|
+
constructor(data?: PartialMessage<WatchRequest_Application>) {
|
|
1635
1583
|
super();
|
|
1636
1584
|
proto3.util.initPartial(data, this);
|
|
1637
1585
|
}
|
|
1638
1586
|
|
|
1639
1587
|
static readonly runtime: typeof proto3 = proto3;
|
|
1640
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1588
|
+
static readonly typeName = "liquidmetal.v1alpha1.WatchRequest.Application";
|
|
1641
1589
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1642
|
-
{ no: 1, name: "
|
|
1643
|
-
{ no: 2, name: "
|
|
1590
|
+
{ no: 1, name: "application_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1591
|
+
{ no: 2, name: "current_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1644
1592
|
]);
|
|
1645
1593
|
|
|
1646
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1647
|
-
return new
|
|
1594
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WatchRequest_Application {
|
|
1595
|
+
return new WatchRequest_Application().fromBinary(bytes, options);
|
|
1648
1596
|
}
|
|
1649
1597
|
|
|
1650
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1651
|
-
return new
|
|
1598
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WatchRequest_Application {
|
|
1599
|
+
return new WatchRequest_Application().fromJson(jsonValue, options);
|
|
1652
1600
|
}
|
|
1653
1601
|
|
|
1654
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1655
|
-
return new
|
|
1602
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WatchRequest_Application {
|
|
1603
|
+
return new WatchRequest_Application().fromJsonString(jsonString, options);
|
|
1656
1604
|
}
|
|
1657
1605
|
|
|
1658
|
-
static equals(a:
|
|
1659
|
-
return proto3.util.equals(
|
|
1606
|
+
static equals(a: WatchRequest_Application | PlainMessage<WatchRequest_Application> | undefined, b: WatchRequest_Application | PlainMessage<WatchRequest_Application> | undefined): boolean {
|
|
1607
|
+
return proto3.util.equals(WatchRequest_Application, a, b);
|
|
1660
1608
|
}
|
|
1661
1609
|
}
|
|
1662
1610
|
|
|
1663
1611
|
/**
|
|
1664
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1612
|
+
* @generated from message liquidmetal.v1alpha1.WatchResponse
|
|
1665
1613
|
*/
|
|
1666
|
-
export class
|
|
1614
|
+
export class WatchResponse extends Message<WatchResponse> {
|
|
1667
1615
|
/**
|
|
1668
|
-
* @generated from field: string
|
|
1616
|
+
* @generated from field: string application_name = 1;
|
|
1669
1617
|
*/
|
|
1670
|
-
|
|
1618
|
+
applicationName = "";
|
|
1671
1619
|
|
|
1672
1620
|
/**
|
|
1673
|
-
* @generated from field:
|
|
1621
|
+
* @generated from field: string current_version_id = 2;
|
|
1674
1622
|
*/
|
|
1675
|
-
|
|
1623
|
+
currentVersionId = "";
|
|
1676
1624
|
|
|
1677
|
-
|
|
1625
|
+
/**
|
|
1626
|
+
* @generated from field: string event_id = 3;
|
|
1627
|
+
*/
|
|
1628
|
+
eventId = "";
|
|
1629
|
+
|
|
1630
|
+
/**
|
|
1631
|
+
* @generated from field: liquidmetal.v1alpha1.WatchResponseEventType event_type = 4;
|
|
1632
|
+
*/
|
|
1633
|
+
eventType = WatchResponseEventType.UNSPECIFIED;
|
|
1634
|
+
|
|
1635
|
+
constructor(data?: PartialMessage<WatchResponse>) {
|
|
1678
1636
|
super();
|
|
1679
1637
|
proto3.util.initPartial(data, this);
|
|
1680
1638
|
}
|
|
1681
1639
|
|
|
1682
1640
|
static readonly runtime: typeof proto3 = proto3;
|
|
1683
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1641
|
+
static readonly typeName = "liquidmetal.v1alpha1.WatchResponse";
|
|
1684
1642
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1685
|
-
{ no: 1, name: "
|
|
1686
|
-
{ no: 2, name: "
|
|
1643
|
+
{ no: 1, name: "application_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1644
|
+
{ no: 2, name: "current_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1645
|
+
{ no: 3, name: "event_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1646
|
+
{ no: 4, name: "event_type", kind: "enum", T: proto3.getEnumType(WatchResponseEventType) },
|
|
1687
1647
|
]);
|
|
1688
1648
|
|
|
1689
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1690
|
-
return new
|
|
1649
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WatchResponse {
|
|
1650
|
+
return new WatchResponse().fromBinary(bytes, options);
|
|
1691
1651
|
}
|
|
1692
1652
|
|
|
1693
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1694
|
-
return new
|
|
1653
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WatchResponse {
|
|
1654
|
+
return new WatchResponse().fromJson(jsonValue, options);
|
|
1695
1655
|
}
|
|
1696
1656
|
|
|
1697
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1698
|
-
return new
|
|
1657
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WatchResponse {
|
|
1658
|
+
return new WatchResponse().fromJsonString(jsonString, options);
|
|
1699
1659
|
}
|
|
1700
1660
|
|
|
1701
|
-
static equals(a:
|
|
1702
|
-
return proto3.util.equals(
|
|
1661
|
+
static equals(a: WatchResponse | PlainMessage<WatchResponse> | undefined, b: WatchResponse | PlainMessage<WatchResponse> | undefined): boolean {
|
|
1662
|
+
return proto3.util.equals(WatchResponse, a, b);
|
|
1703
1663
|
}
|
|
1704
1664
|
}
|
|
1705
1665
|
|
|
1706
1666
|
/**
|
|
1707
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1667
|
+
* @generated from message liquidmetal.v1alpha1.DeleteRequest
|
|
1708
1668
|
*/
|
|
1709
|
-
export class
|
|
1669
|
+
export class DeleteRequest extends Message<DeleteRequest> {
|
|
1710
1670
|
/**
|
|
1711
|
-
* @generated from field:
|
|
1671
|
+
* @generated from field: string user_id = 1;
|
|
1712
1672
|
*/
|
|
1713
|
-
|
|
1673
|
+
userId = "";
|
|
1714
1674
|
|
|
1715
1675
|
/**
|
|
1716
|
-
* @generated from field: string
|
|
1676
|
+
* @generated from field: string organization_id = 2;
|
|
1717
1677
|
*/
|
|
1718
|
-
|
|
1678
|
+
organizationId = "";
|
|
1719
1679
|
|
|
1720
1680
|
/**
|
|
1721
|
-
* @generated from field:
|
|
1681
|
+
* @generated from field: repeated liquidmetal.v1alpha1.DeleteRequest.Application applications = 3;
|
|
1722
1682
|
*/
|
|
1723
|
-
|
|
1683
|
+
applications: DeleteRequest_Application[] = [];
|
|
1724
1684
|
|
|
1725
|
-
constructor(data?: PartialMessage<
|
|
1685
|
+
constructor(data?: PartialMessage<DeleteRequest>) {
|
|
1726
1686
|
super();
|
|
1727
1687
|
proto3.util.initPartial(data, this);
|
|
1728
1688
|
}
|
|
1729
1689
|
|
|
1730
1690
|
static readonly runtime: typeof proto3 = proto3;
|
|
1731
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1691
|
+
static readonly typeName = "liquidmetal.v1alpha1.DeleteRequest";
|
|
1732
1692
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1733
|
-
{ no: 1, name: "
|
|
1734
|
-
{ no: 2, name: "
|
|
1735
|
-
{ no: 3, name: "
|
|
1693
|
+
{ no: 1, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1694
|
+
{ no: 2, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1695
|
+
{ no: 3, name: "applications", kind: "message", T: DeleteRequest_Application, repeated: true },
|
|
1736
1696
|
]);
|
|
1737
1697
|
|
|
1738
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1739
|
-
return new
|
|
1698
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteRequest {
|
|
1699
|
+
return new DeleteRequest().fromBinary(bytes, options);
|
|
1740
1700
|
}
|
|
1741
1701
|
|
|
1742
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1743
|
-
return new
|
|
1702
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteRequest {
|
|
1703
|
+
return new DeleteRequest().fromJson(jsonValue, options);
|
|
1744
1704
|
}
|
|
1745
1705
|
|
|
1746
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1747
|
-
return new
|
|
1706
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteRequest {
|
|
1707
|
+
return new DeleteRequest().fromJsonString(jsonString, options);
|
|
1748
1708
|
}
|
|
1749
1709
|
|
|
1750
|
-
static equals(a:
|
|
1751
|
-
return proto3.util.equals(
|
|
1710
|
+
static equals(a: DeleteRequest | PlainMessage<DeleteRequest> | undefined, b: DeleteRequest | PlainMessage<DeleteRequest> | undefined): boolean {
|
|
1711
|
+
return proto3.util.equals(DeleteRequest, a, b);
|
|
1752
1712
|
}
|
|
1753
1713
|
}
|
|
1754
1714
|
|
|
1755
1715
|
/**
|
|
1756
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1716
|
+
* @generated from message liquidmetal.v1alpha1.DeleteRequest.Application
|
|
1757
1717
|
*/
|
|
1758
|
-
export class
|
|
1718
|
+
export class DeleteRequest_Application extends Message<DeleteRequest_Application> {
|
|
1759
1719
|
/**
|
|
1760
|
-
* @generated from field: string
|
|
1720
|
+
* @generated from field: string application_name = 1;
|
|
1761
1721
|
*/
|
|
1762
|
-
|
|
1722
|
+
applicationName = "";
|
|
1763
1723
|
|
|
1764
|
-
|
|
1724
|
+
/**
|
|
1725
|
+
* @generated from field: string current_version_id = 2;
|
|
1726
|
+
*/
|
|
1727
|
+
currentVersionId = "";
|
|
1728
|
+
|
|
1729
|
+
constructor(data?: PartialMessage<DeleteRequest_Application>) {
|
|
1765
1730
|
super();
|
|
1766
1731
|
proto3.util.initPartial(data, this);
|
|
1767
1732
|
}
|
|
1768
1733
|
|
|
1769
1734
|
static readonly runtime: typeof proto3 = proto3;
|
|
1770
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1735
|
+
static readonly typeName = "liquidmetal.v1alpha1.DeleteRequest.Application";
|
|
1771
1736
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1772
|
-
{ no: 1, name: "
|
|
1737
|
+
{ no: 1, name: "application_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1738
|
+
{ no: 2, name: "current_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1773
1739
|
]);
|
|
1774
1740
|
|
|
1775
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1776
|
-
return new
|
|
1741
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteRequest_Application {
|
|
1742
|
+
return new DeleteRequest_Application().fromBinary(bytes, options);
|
|
1777
1743
|
}
|
|
1778
1744
|
|
|
1779
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1780
|
-
return new
|
|
1745
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteRequest_Application {
|
|
1746
|
+
return new DeleteRequest_Application().fromJson(jsonValue, options);
|
|
1781
1747
|
}
|
|
1782
1748
|
|
|
1783
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1784
|
-
return new
|
|
1749
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteRequest_Application {
|
|
1750
|
+
return new DeleteRequest_Application().fromJsonString(jsonString, options);
|
|
1785
1751
|
}
|
|
1786
1752
|
|
|
1787
|
-
static equals(a:
|
|
1788
|
-
return proto3.util.equals(
|
|
1753
|
+
static equals(a: DeleteRequest_Application | PlainMessage<DeleteRequest_Application> | undefined, b: DeleteRequest_Application | PlainMessage<DeleteRequest_Application> | undefined): boolean {
|
|
1754
|
+
return proto3.util.equals(DeleteRequest_Application, a, b);
|
|
1789
1755
|
}
|
|
1790
1756
|
}
|
|
1791
1757
|
|
|
1792
1758
|
/**
|
|
1793
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1759
|
+
* @generated from message liquidmetal.v1alpha1.DeleteResponse
|
|
1794
1760
|
*/
|
|
1795
|
-
export class
|
|
1796
|
-
|
|
1797
|
-
* @generated from field: string name = 1;
|
|
1798
|
-
*/
|
|
1799
|
-
name = "";
|
|
1800
|
-
|
|
1801
|
-
/**
|
|
1802
|
-
* @generated from field: string version_id = 2;
|
|
1803
|
-
*/
|
|
1804
|
-
versionId = "";
|
|
1805
|
-
|
|
1806
|
-
/**
|
|
1807
|
-
* @generated from field: string manifest = 3;
|
|
1808
|
-
*/
|
|
1809
|
-
manifest = "";
|
|
1810
|
-
|
|
1811
|
-
/**
|
|
1812
|
-
* @generated from field: liquidmetal.v1alpha1.SetApplicationManifestsRequest.ApplicationMetadata metadata = 4;
|
|
1813
|
-
*/
|
|
1814
|
-
metadata?: SetApplicationManifestsRequest_ApplicationMetadata;
|
|
1815
|
-
|
|
1816
|
-
constructor(data?: PartialMessage<SetApplicationManifestsRequest_Manifest>) {
|
|
1761
|
+
export class DeleteResponse extends Message<DeleteResponse> {
|
|
1762
|
+
constructor(data?: PartialMessage<DeleteResponse>) {
|
|
1817
1763
|
super();
|
|
1818
1764
|
proto3.util.initPartial(data, this);
|
|
1819
1765
|
}
|
|
1820
1766
|
|
|
1821
1767
|
static readonly runtime: typeof proto3 = proto3;
|
|
1822
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1768
|
+
static readonly typeName = "liquidmetal.v1alpha1.DeleteResponse";
|
|
1823
1769
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1824
|
-
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1825
|
-
{ no: 2, name: "version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1826
|
-
{ no: 3, name: "manifest", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1827
|
-
{ no: 4, name: "metadata", kind: "message", T: SetApplicationManifestsRequest_ApplicationMetadata },
|
|
1828
1770
|
]);
|
|
1829
1771
|
|
|
1830
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1831
|
-
return new
|
|
1772
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteResponse {
|
|
1773
|
+
return new DeleteResponse().fromBinary(bytes, options);
|
|
1832
1774
|
}
|
|
1833
1775
|
|
|
1834
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1835
|
-
return new
|
|
1776
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteResponse {
|
|
1777
|
+
return new DeleteResponse().fromJson(jsonValue, options);
|
|
1836
1778
|
}
|
|
1837
1779
|
|
|
1838
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1839
|
-
return new
|
|
1780
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteResponse {
|
|
1781
|
+
return new DeleteResponse().fromJsonString(jsonString, options);
|
|
1840
1782
|
}
|
|
1841
1783
|
|
|
1842
|
-
static equals(a:
|
|
1843
|
-
return proto3.util.equals(
|
|
1784
|
+
static equals(a: DeleteResponse | PlainMessage<DeleteResponse> | undefined, b: DeleteResponse | PlainMessage<DeleteResponse> | undefined): boolean {
|
|
1785
|
+
return proto3.util.equals(DeleteResponse, a, b);
|
|
1844
1786
|
}
|
|
1845
1787
|
}
|
|
1846
1788
|
|
|
1847
1789
|
/**
|
|
1848
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1790
|
+
* @generated from message liquidmetal.v1alpha1.SetActiveRequest
|
|
1849
1791
|
*/
|
|
1850
|
-
export class
|
|
1792
|
+
export class SetActiveRequest extends Message<SetActiveRequest> {
|
|
1793
|
+
/**
|
|
1794
|
+
* @generated from field: string user_id = 1;
|
|
1795
|
+
*/
|
|
1796
|
+
userId = "";
|
|
1797
|
+
|
|
1851
1798
|
/**
|
|
1852
|
-
* @generated from field:
|
|
1799
|
+
* @generated from field: string organization_id = 2;
|
|
1853
1800
|
*/
|
|
1854
|
-
|
|
1801
|
+
organizationId = "";
|
|
1855
1802
|
|
|
1856
1803
|
/**
|
|
1857
|
-
* @generated from field: repeated liquidmetal.v1alpha1.
|
|
1804
|
+
* @generated from field: repeated liquidmetal.v1alpha1.SetActiveRequest.Application applications = 3;
|
|
1858
1805
|
*/
|
|
1859
|
-
|
|
1806
|
+
applications: SetActiveRequest_Application[] = [];
|
|
1860
1807
|
|
|
1861
|
-
constructor(data?: PartialMessage<
|
|
1808
|
+
constructor(data?: PartialMessage<SetActiveRequest>) {
|
|
1862
1809
|
super();
|
|
1863
1810
|
proto3.util.initPartial(data, this);
|
|
1864
1811
|
}
|
|
1865
1812
|
|
|
1866
1813
|
static readonly runtime: typeof proto3 = proto3;
|
|
1867
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1814
|
+
static readonly typeName = "liquidmetal.v1alpha1.SetActiveRequest";
|
|
1868
1815
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1869
|
-
{ no: 1, name: "
|
|
1870
|
-
{ no: 2, name: "
|
|
1816
|
+
{ no: 1, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1817
|
+
{ no: 2, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1818
|
+
{ no: 3, name: "applications", kind: "message", T: SetActiveRequest_Application, repeated: true },
|
|
1871
1819
|
]);
|
|
1872
1820
|
|
|
1873
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1874
|
-
return new
|
|
1821
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetActiveRequest {
|
|
1822
|
+
return new SetActiveRequest().fromBinary(bytes, options);
|
|
1875
1823
|
}
|
|
1876
1824
|
|
|
1877
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1878
|
-
return new
|
|
1825
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetActiveRequest {
|
|
1826
|
+
return new SetActiveRequest().fromJson(jsonValue, options);
|
|
1879
1827
|
}
|
|
1880
1828
|
|
|
1881
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1882
|
-
return new
|
|
1829
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetActiveRequest {
|
|
1830
|
+
return new SetActiveRequest().fromJsonString(jsonString, options);
|
|
1883
1831
|
}
|
|
1884
1832
|
|
|
1885
|
-
static equals(a:
|
|
1886
|
-
return proto3.util.equals(
|
|
1833
|
+
static equals(a: SetActiveRequest | PlainMessage<SetActiveRequest> | undefined, b: SetActiveRequest | PlainMessage<SetActiveRequest> | undefined): boolean {
|
|
1834
|
+
return proto3.util.equals(SetActiveRequest, a, b);
|
|
1887
1835
|
}
|
|
1888
1836
|
}
|
|
1889
1837
|
|
|
1890
1838
|
/**
|
|
1891
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1839
|
+
* @generated from message liquidmetal.v1alpha1.SetActiveRequest.Application
|
|
1892
1840
|
*/
|
|
1893
|
-
export class
|
|
1841
|
+
export class SetActiveRequest_Application extends Message<SetActiveRequest_Application> {
|
|
1894
1842
|
/**
|
|
1895
|
-
* @generated from field: string
|
|
1843
|
+
* @generated from field: string application_name = 1;
|
|
1896
1844
|
*/
|
|
1897
|
-
|
|
1845
|
+
applicationName = "";
|
|
1898
1846
|
|
|
1899
1847
|
/**
|
|
1900
|
-
* @generated from field: string
|
|
1848
|
+
* @generated from field: string current_version_id = 2;
|
|
1901
1849
|
*/
|
|
1902
|
-
|
|
1850
|
+
currentVersionId = "";
|
|
1851
|
+
|
|
1852
|
+
/**
|
|
1853
|
+
* @generated from field: bool is_active = 3;
|
|
1854
|
+
*/
|
|
1855
|
+
isActive = false;
|
|
1903
1856
|
|
|
1904
|
-
constructor(data?: PartialMessage<
|
|
1857
|
+
constructor(data?: PartialMessage<SetActiveRequest_Application>) {
|
|
1905
1858
|
super();
|
|
1906
1859
|
proto3.util.initPartial(data, this);
|
|
1907
1860
|
}
|
|
1908
1861
|
|
|
1909
1862
|
static readonly runtime: typeof proto3 = proto3;
|
|
1910
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1863
|
+
static readonly typeName = "liquidmetal.v1alpha1.SetActiveRequest.Application";
|
|
1911
1864
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1912
|
-
{ no: 1, name: "
|
|
1913
|
-
{ no: 2, name: "
|
|
1865
|
+
{ no: 1, name: "application_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1866
|
+
{ no: 2, name: "current_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1867
|
+
{ no: 3, name: "is_active", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1914
1868
|
]);
|
|
1915
1869
|
|
|
1916
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1917
|
-
return new
|
|
1870
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetActiveRequest_Application {
|
|
1871
|
+
return new SetActiveRequest_Application().fromBinary(bytes, options);
|
|
1918
1872
|
}
|
|
1919
1873
|
|
|
1920
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1921
|
-
return new
|
|
1874
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetActiveRequest_Application {
|
|
1875
|
+
return new SetActiveRequest_Application().fromJson(jsonValue, options);
|
|
1922
1876
|
}
|
|
1923
1877
|
|
|
1924
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1925
|
-
return new
|
|
1878
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetActiveRequest_Application {
|
|
1879
|
+
return new SetActiveRequest_Application().fromJsonString(jsonString, options);
|
|
1926
1880
|
}
|
|
1927
1881
|
|
|
1928
|
-
static equals(a:
|
|
1929
|
-
return proto3.util.equals(
|
|
1882
|
+
static equals(a: SetActiveRequest_Application | PlainMessage<SetActiveRequest_Application> | undefined, b: SetActiveRequest_Application | PlainMessage<SetActiveRequest_Application> | undefined): boolean {
|
|
1883
|
+
return proto3.util.equals(SetActiveRequest_Application, a, b);
|
|
1930
1884
|
}
|
|
1931
1885
|
}
|
|
1932
1886
|
|
|
1933
1887
|
/**
|
|
1934
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1888
|
+
* @generated from message liquidmetal.v1alpha1.SetActiveResponse
|
|
1935
1889
|
*/
|
|
1936
|
-
export class
|
|
1937
|
-
|
|
1938
|
-
* @generated from field: repeated liquidmetal.v1alpha1.DeleteApplicationsRequest.Application applications = 1;
|
|
1939
|
-
*/
|
|
1940
|
-
applications: DeleteApplicationsRequest_Application[] = [];
|
|
1941
|
-
|
|
1942
|
-
/**
|
|
1943
|
-
* @generated from field: string user_id = 2;
|
|
1944
|
-
*/
|
|
1945
|
-
userId = "";
|
|
1946
|
-
|
|
1947
|
-
/**
|
|
1948
|
-
* @generated from field: string organization_id = 3;
|
|
1949
|
-
*/
|
|
1950
|
-
organizationId = "";
|
|
1951
|
-
|
|
1952
|
-
constructor(data?: PartialMessage<DeleteApplicationsRequest>) {
|
|
1890
|
+
export class SetActiveResponse extends Message<SetActiveResponse> {
|
|
1891
|
+
constructor(data?: PartialMessage<SetActiveResponse>) {
|
|
1953
1892
|
super();
|
|
1954
1893
|
proto3.util.initPartial(data, this);
|
|
1955
1894
|
}
|
|
1956
1895
|
|
|
1957
1896
|
static readonly runtime: typeof proto3 = proto3;
|
|
1958
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1897
|
+
static readonly typeName = "liquidmetal.v1alpha1.SetActiveResponse";
|
|
1959
1898
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1960
|
-
{ no: 1, name: "applications", kind: "message", T: DeleteApplicationsRequest_Application, repeated: true },
|
|
1961
|
-
{ no: 2, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1962
|
-
{ no: 3, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1963
1899
|
]);
|
|
1964
1900
|
|
|
1965
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
1966
|
-
return new
|
|
1901
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetActiveResponse {
|
|
1902
|
+
return new SetActiveResponse().fromBinary(bytes, options);
|
|
1967
1903
|
}
|
|
1968
1904
|
|
|
1969
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
1970
|
-
return new
|
|
1905
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetActiveResponse {
|
|
1906
|
+
return new SetActiveResponse().fromJson(jsonValue, options);
|
|
1971
1907
|
}
|
|
1972
1908
|
|
|
1973
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
1974
|
-
return new
|
|
1909
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetActiveResponse {
|
|
1910
|
+
return new SetActiveResponse().fromJsonString(jsonString, options);
|
|
1975
1911
|
}
|
|
1976
1912
|
|
|
1977
|
-
static equals(a:
|
|
1978
|
-
return proto3.util.equals(
|
|
1913
|
+
static equals(a: SetActiveResponse | PlainMessage<SetActiveResponse> | undefined, b: SetActiveResponse | PlainMessage<SetActiveResponse> | undefined): boolean {
|
|
1914
|
+
return proto3.util.equals(SetActiveResponse, a, b);
|
|
1979
1915
|
}
|
|
1980
1916
|
}
|
|
1981
1917
|
|
|
1982
1918
|
/**
|
|
1983
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1919
|
+
* @generated from message liquidmetal.v1alpha1.SetSandboxRequest
|
|
1984
1920
|
*/
|
|
1985
|
-
export class
|
|
1921
|
+
export class SetSandboxRequest extends Message<SetSandboxRequest> {
|
|
1986
1922
|
/**
|
|
1987
|
-
* @generated from field: string
|
|
1923
|
+
* @generated from field: string user_id = 1;
|
|
1988
1924
|
*/
|
|
1989
|
-
|
|
1925
|
+
userId = "";
|
|
1990
1926
|
|
|
1991
1927
|
/**
|
|
1992
|
-
* @generated from field:
|
|
1928
|
+
* @generated from field: string organization_id = 2;
|
|
1993
1929
|
*/
|
|
1994
|
-
|
|
1930
|
+
organizationId = "";
|
|
1995
1931
|
|
|
1996
|
-
|
|
1932
|
+
/**
|
|
1933
|
+
* @generated from field: repeated liquidmetal.v1alpha1.SetSandboxRequest.Application applications = 3;
|
|
1934
|
+
*/
|
|
1935
|
+
applications: SetSandboxRequest_Application[] = [];
|
|
1936
|
+
|
|
1937
|
+
constructor(data?: PartialMessage<SetSandboxRequest>) {
|
|
1997
1938
|
super();
|
|
1998
1939
|
proto3.util.initPartial(data, this);
|
|
1999
1940
|
}
|
|
2000
1941
|
|
|
2001
1942
|
static readonly runtime: typeof proto3 = proto3;
|
|
2002
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1943
|
+
static readonly typeName = "liquidmetal.v1alpha1.SetSandboxRequest";
|
|
2003
1944
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
2004
|
-
{ no: 1, name: "
|
|
2005
|
-
{ no: 2, name: "
|
|
1945
|
+
{ no: 1, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1946
|
+
{ no: 2, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1947
|
+
{ no: 3, name: "applications", kind: "message", T: SetSandboxRequest_Application, repeated: true },
|
|
2006
1948
|
]);
|
|
2007
1949
|
|
|
2008
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
2009
|
-
return new
|
|
1950
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetSandboxRequest {
|
|
1951
|
+
return new SetSandboxRequest().fromBinary(bytes, options);
|
|
2010
1952
|
}
|
|
2011
1953
|
|
|
2012
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
2013
|
-
return new
|
|
1954
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetSandboxRequest {
|
|
1955
|
+
return new SetSandboxRequest().fromJson(jsonValue, options);
|
|
2014
1956
|
}
|
|
2015
1957
|
|
|
2016
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
2017
|
-
return new
|
|
1958
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetSandboxRequest {
|
|
1959
|
+
return new SetSandboxRequest().fromJsonString(jsonString, options);
|
|
2018
1960
|
}
|
|
2019
1961
|
|
|
2020
|
-
static equals(a:
|
|
2021
|
-
return proto3.util.equals(
|
|
1962
|
+
static equals(a: SetSandboxRequest | PlainMessage<SetSandboxRequest> | undefined, b: SetSandboxRequest | PlainMessage<SetSandboxRequest> | undefined): boolean {
|
|
1963
|
+
return proto3.util.equals(SetSandboxRequest, a, b);
|
|
2022
1964
|
}
|
|
2023
1965
|
}
|
|
2024
1966
|
|
|
2025
1967
|
/**
|
|
2026
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
1968
|
+
* @generated from message liquidmetal.v1alpha1.SetSandboxRequest.Application
|
|
2027
1969
|
*/
|
|
2028
|
-
export class
|
|
1970
|
+
export class SetSandboxRequest_Application extends Message<SetSandboxRequest_Application> {
|
|
2029
1971
|
/**
|
|
2030
|
-
* @generated from field:
|
|
1972
|
+
* @generated from field: string application_name = 1;
|
|
2031
1973
|
*/
|
|
2032
|
-
|
|
1974
|
+
applicationName = "";
|
|
2033
1975
|
|
|
2034
1976
|
/**
|
|
2035
|
-
* @generated from field:
|
|
1977
|
+
* @generated from field: string current_version_id = 2;
|
|
2036
1978
|
*/
|
|
2037
|
-
|
|
1979
|
+
currentVersionId = "";
|
|
2038
1980
|
|
|
2039
|
-
|
|
1981
|
+
/**
|
|
1982
|
+
* @generated from field: bool is_sandboxed = 3;
|
|
1983
|
+
*/
|
|
1984
|
+
isSandboxed = false;
|
|
1985
|
+
|
|
1986
|
+
constructor(data?: PartialMessage<SetSandboxRequest_Application>) {
|
|
2040
1987
|
super();
|
|
2041
1988
|
proto3.util.initPartial(data, this);
|
|
2042
1989
|
}
|
|
2043
1990
|
|
|
2044
1991
|
static readonly runtime: typeof proto3 = proto3;
|
|
2045
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
1992
|
+
static readonly typeName = "liquidmetal.v1alpha1.SetSandboxRequest.Application";
|
|
2046
1993
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
2047
|
-
{ no: 1, name: "
|
|
2048
|
-
{ no: 2, name: "
|
|
1994
|
+
{ no: 1, name: "application_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1995
|
+
{ no: 2, name: "current_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1996
|
+
{ no: 3, name: "is_sandboxed", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
2049
1997
|
]);
|
|
2050
1998
|
|
|
2051
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
2052
|
-
return new
|
|
1999
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetSandboxRequest_Application {
|
|
2000
|
+
return new SetSandboxRequest_Application().fromBinary(bytes, options);
|
|
2053
2001
|
}
|
|
2054
2002
|
|
|
2055
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
2056
|
-
return new
|
|
2003
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetSandboxRequest_Application {
|
|
2004
|
+
return new SetSandboxRequest_Application().fromJson(jsonValue, options);
|
|
2057
2005
|
}
|
|
2058
2006
|
|
|
2059
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
2060
|
-
return new
|
|
2007
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetSandboxRequest_Application {
|
|
2008
|
+
return new SetSandboxRequest_Application().fromJsonString(jsonString, options);
|
|
2061
2009
|
}
|
|
2062
2010
|
|
|
2063
|
-
static equals(a:
|
|
2064
|
-
return proto3.util.equals(
|
|
2011
|
+
static equals(a: SetSandboxRequest_Application | PlainMessage<SetSandboxRequest_Application> | undefined, b: SetSandboxRequest_Application | PlainMessage<SetSandboxRequest_Application> | undefined): boolean {
|
|
2012
|
+
return proto3.util.equals(SetSandboxRequest_Application, a, b);
|
|
2065
2013
|
}
|
|
2066
2014
|
}
|
|
2067
2015
|
|
|
2068
2016
|
/**
|
|
2069
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
2017
|
+
* @generated from message liquidmetal.v1alpha1.SetSandboxResponse
|
|
2070
2018
|
*/
|
|
2071
|
-
export class
|
|
2072
|
-
|
|
2073
|
-
* @generated from field: string name = 1;
|
|
2074
|
-
*/
|
|
2075
|
-
name = "";
|
|
2076
|
-
|
|
2077
|
-
/**
|
|
2078
|
-
* @generated from field: optional string version_id = 2;
|
|
2079
|
-
*/
|
|
2080
|
-
versionId?: string;
|
|
2081
|
-
|
|
2082
|
-
constructor(data?: PartialMessage<DeleteApplicationsResponse_Application>) {
|
|
2019
|
+
export class SetSandboxResponse extends Message<SetSandboxResponse> {
|
|
2020
|
+
constructor(data?: PartialMessage<SetSandboxResponse>) {
|
|
2083
2021
|
super();
|
|
2084
2022
|
proto3.util.initPartial(data, this);
|
|
2085
2023
|
}
|
|
2086
2024
|
|
|
2087
2025
|
static readonly runtime: typeof proto3 = proto3;
|
|
2088
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
2026
|
+
static readonly typeName = "liquidmetal.v1alpha1.SetSandboxResponse";
|
|
2089
2027
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
2090
|
-
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2091
|
-
{ no: 2, name: "version_id", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
2092
2028
|
]);
|
|
2093
2029
|
|
|
2094
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
2095
|
-
return new
|
|
2030
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetSandboxResponse {
|
|
2031
|
+
return new SetSandboxResponse().fromBinary(bytes, options);
|
|
2096
2032
|
}
|
|
2097
2033
|
|
|
2098
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
2099
|
-
return new
|
|
2034
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetSandboxResponse {
|
|
2035
|
+
return new SetSandboxResponse().fromJson(jsonValue, options);
|
|
2100
2036
|
}
|
|
2101
2037
|
|
|
2102
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
2103
|
-
return new
|
|
2038
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetSandboxResponse {
|
|
2039
|
+
return new SetSandboxResponse().fromJsonString(jsonString, options);
|
|
2104
2040
|
}
|
|
2105
2041
|
|
|
2106
|
-
static equals(a:
|
|
2107
|
-
return proto3.util.equals(
|
|
2042
|
+
static equals(a: SetSandboxResponse | PlainMessage<SetSandboxResponse> | undefined, b: SetSandboxResponse | PlainMessage<SetSandboxResponse> | undefined): boolean {
|
|
2043
|
+
return proto3.util.equals(SetSandboxResponse, a, b);
|
|
2108
2044
|
}
|
|
2109
2045
|
}
|
|
2110
2046
|
|
|
2111
2047
|
/**
|
|
2112
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
2048
|
+
* @generated from message liquidmetal.v1alpha1.StatusRequest
|
|
2113
2049
|
*/
|
|
2114
|
-
export class
|
|
2050
|
+
export class StatusRequest extends Message<StatusRequest> {
|
|
2115
2051
|
/**
|
|
2116
2052
|
* @generated from field: string user_id = 1;
|
|
2117
2053
|
*/
|
|
@@ -2128,166 +2064,132 @@ export class QueryResourcesRequest extends Message<QueryResourcesRequest> {
|
|
|
2128
2064
|
applicationName = "";
|
|
2129
2065
|
|
|
2130
2066
|
/**
|
|
2131
|
-
* @generated from field: string
|
|
2067
|
+
* @generated from field: string current_version_id = 4;
|
|
2132
2068
|
*/
|
|
2133
|
-
|
|
2069
|
+
currentVersionId = "";
|
|
2134
2070
|
|
|
2135
|
-
constructor(data?: PartialMessage<
|
|
2071
|
+
constructor(data?: PartialMessage<StatusRequest>) {
|
|
2136
2072
|
super();
|
|
2137
2073
|
proto3.util.initPartial(data, this);
|
|
2138
2074
|
}
|
|
2139
2075
|
|
|
2140
2076
|
static readonly runtime: typeof proto3 = proto3;
|
|
2141
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
2077
|
+
static readonly typeName = "liquidmetal.v1alpha1.StatusRequest";
|
|
2142
2078
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
2143
2079
|
{ no: 1, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2144
2080
|
{ no: 2, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2145
2081
|
{ no: 3, name: "application_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2146
|
-
{ no: 4, name: "
|
|
2082
|
+
{ no: 4, name: "current_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2147
2083
|
]);
|
|
2148
2084
|
|
|
2149
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
2150
|
-
return new
|
|
2085
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StatusRequest {
|
|
2086
|
+
return new StatusRequest().fromBinary(bytes, options);
|
|
2151
2087
|
}
|
|
2152
2088
|
|
|
2153
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
2154
|
-
return new
|
|
2089
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StatusRequest {
|
|
2090
|
+
return new StatusRequest().fromJson(jsonValue, options);
|
|
2155
2091
|
}
|
|
2156
2092
|
|
|
2157
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
2158
|
-
return new
|
|
2093
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StatusRequest {
|
|
2094
|
+
return new StatusRequest().fromJsonString(jsonString, options);
|
|
2159
2095
|
}
|
|
2160
2096
|
|
|
2161
|
-
static equals(a:
|
|
2162
|
-
return proto3.util.equals(
|
|
2097
|
+
static equals(a: StatusRequest | PlainMessage<StatusRequest> | undefined, b: StatusRequest | PlainMessage<StatusRequest> | undefined): boolean {
|
|
2098
|
+
return proto3.util.equals(StatusRequest, a, b);
|
|
2163
2099
|
}
|
|
2164
2100
|
}
|
|
2165
2101
|
|
|
2166
2102
|
/**
|
|
2167
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
2103
|
+
* @generated from message liquidmetal.v1alpha1.StatusResponse
|
|
2168
2104
|
*/
|
|
2169
|
-
export class
|
|
2105
|
+
export class StatusResponse extends Message<StatusResponse> {
|
|
2170
2106
|
/**
|
|
2171
|
-
* @generated from field:
|
|
2107
|
+
* @generated from field: liquidmetal.v1alpha1.UnitState state = 1;
|
|
2172
2108
|
*/
|
|
2173
|
-
|
|
2109
|
+
state = UnitState.UNSPECIFIED;
|
|
2174
2110
|
|
|
2175
2111
|
/**
|
|
2176
|
-
* @generated from field:
|
|
2112
|
+
* @generated from field: repeated liquidmetal.v1alpha1.StatusResponse.Module modules = 2;
|
|
2177
2113
|
*/
|
|
2178
|
-
|
|
2114
|
+
modules: StatusResponse_Module[] = [];
|
|
2179
2115
|
|
|
2180
|
-
constructor(data?: PartialMessage<
|
|
2116
|
+
constructor(data?: PartialMessage<StatusResponse>) {
|
|
2181
2117
|
super();
|
|
2182
2118
|
proto3.util.initPartial(data, this);
|
|
2183
2119
|
}
|
|
2184
2120
|
|
|
2185
2121
|
static readonly runtime: typeof proto3 = proto3;
|
|
2186
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
2122
|
+
static readonly typeName = "liquidmetal.v1alpha1.StatusResponse";
|
|
2187
2123
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
2188
|
-
{ no: 1, name: "
|
|
2189
|
-
{ no: 2, name: "
|
|
2124
|
+
{ no: 1, name: "state", kind: "enum", T: proto3.getEnumType(UnitState) },
|
|
2125
|
+
{ no: 2, name: "modules", kind: "message", T: StatusResponse_Module, repeated: true },
|
|
2190
2126
|
]);
|
|
2191
2127
|
|
|
2192
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
2193
|
-
return new
|
|
2128
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StatusResponse {
|
|
2129
|
+
return new StatusResponse().fromBinary(bytes, options);
|
|
2194
2130
|
}
|
|
2195
2131
|
|
|
2196
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
2197
|
-
return new
|
|
2132
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StatusResponse {
|
|
2133
|
+
return new StatusResponse().fromJson(jsonValue, options);
|
|
2198
2134
|
}
|
|
2199
2135
|
|
|
2200
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
2201
|
-
return new
|
|
2136
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StatusResponse {
|
|
2137
|
+
return new StatusResponse().fromJsonString(jsonString, options);
|
|
2202
2138
|
}
|
|
2203
2139
|
|
|
2204
|
-
static equals(a:
|
|
2205
|
-
return proto3.util.equals(
|
|
2140
|
+
static equals(a: StatusResponse | PlainMessage<StatusResponse> | undefined, b: StatusResponse | PlainMessage<StatusResponse> | undefined): boolean {
|
|
2141
|
+
return proto3.util.equals(StatusResponse, a, b);
|
|
2206
2142
|
}
|
|
2207
2143
|
}
|
|
2208
2144
|
|
|
2209
2145
|
/**
|
|
2210
|
-
*
|
|
2146
|
+
* A module corresponds to a module in an application manifest.
|
|
2147
|
+
*
|
|
2148
|
+
* @generated from message liquidmetal.v1alpha1.StatusResponse.Module
|
|
2211
2149
|
*/
|
|
2212
|
-
export class
|
|
2213
|
-
/**
|
|
2214
|
-
* @generated from field: string organization_id = 1;
|
|
2215
|
-
*/
|
|
2216
|
-
organizationId = "";
|
|
2217
|
-
|
|
2150
|
+
export class StatusResponse_Module extends Message<StatusResponse_Module> {
|
|
2218
2151
|
/**
|
|
2219
|
-
* @generated from field: string
|
|
2220
|
-
*/
|
|
2221
|
-
applicationName = "";
|
|
2222
|
-
|
|
2223
|
-
/**
|
|
2224
|
-
* @generated from field: string application_version_id = 3;
|
|
2225
|
-
*/
|
|
2226
|
-
applicationVersionId = "";
|
|
2227
|
-
|
|
2228
|
-
/**
|
|
2229
|
-
* @generated from field: string resource_id = 4;
|
|
2230
|
-
*/
|
|
2231
|
-
resourceId = "";
|
|
2232
|
-
|
|
2233
|
-
/**
|
|
2234
|
-
* @generated from field: string name = 5;
|
|
2152
|
+
* @generated from field: string name = 1;
|
|
2235
2153
|
*/
|
|
2236
2154
|
name = "";
|
|
2237
2155
|
|
|
2238
2156
|
/**
|
|
2239
|
-
* @generated from field:
|
|
2157
|
+
* @generated from field: liquidmetal.v1alpha1.UnitState state = 2;
|
|
2240
2158
|
*/
|
|
2241
|
-
|
|
2159
|
+
state = UnitState.UNSPECIFIED;
|
|
2242
2160
|
|
|
2243
2161
|
/**
|
|
2244
|
-
* @generated from field:
|
|
2162
|
+
* @generated from field: repeated string urls = 3;
|
|
2245
2163
|
*/
|
|
2246
|
-
|
|
2164
|
+
urls: string[] = [];
|
|
2247
2165
|
|
|
2248
|
-
|
|
2249
|
-
* @generated from field: google.protobuf.Timestamp created_at = 9;
|
|
2250
|
-
*/
|
|
2251
|
-
createdAt?: Timestamp;
|
|
2252
|
-
|
|
2253
|
-
/**
|
|
2254
|
-
* @generated from field: google.protobuf.Timestamp updated_at = 10;
|
|
2255
|
-
*/
|
|
2256
|
-
updatedAt?: Timestamp;
|
|
2257
|
-
|
|
2258
|
-
constructor(data?: PartialMessage<QueryResourcesResponse_Resource>) {
|
|
2166
|
+
constructor(data?: PartialMessage<StatusResponse_Module>) {
|
|
2259
2167
|
super();
|
|
2260
2168
|
proto3.util.initPartial(data, this);
|
|
2261
2169
|
}
|
|
2262
2170
|
|
|
2263
2171
|
static readonly runtime: typeof proto3 = proto3;
|
|
2264
|
-
static readonly typeName = "liquidmetal.v1alpha1.
|
|
2172
|
+
static readonly typeName = "liquidmetal.v1alpha1.StatusResponse.Module";
|
|
2265
2173
|
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
2266
|
-
{ no: 1, name: "
|
|
2267
|
-
{ no: 2, name: "
|
|
2268
|
-
{ no: 3, name: "
|
|
2269
|
-
{ no: 4, name: "resource_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2270
|
-
{ no: 5, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2271
|
-
{ no: 6, name: "type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2272
|
-
{ no: 8, name: "attributes", kind: "message", T: Struct },
|
|
2273
|
-
{ no: 9, name: "created_at", kind: "message", T: Timestamp },
|
|
2274
|
-
{ no: 10, name: "updated_at", kind: "message", T: Timestamp },
|
|
2174
|
+
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2175
|
+
{ no: 2, name: "state", kind: "enum", T: proto3.getEnumType(UnitState) },
|
|
2176
|
+
{ no: 3, name: "urls", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
2275
2177
|
]);
|
|
2276
2178
|
|
|
2277
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
2278
|
-
return new
|
|
2179
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StatusResponse_Module {
|
|
2180
|
+
return new StatusResponse_Module().fromBinary(bytes, options);
|
|
2279
2181
|
}
|
|
2280
2182
|
|
|
2281
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
2282
|
-
return new
|
|
2183
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StatusResponse_Module {
|
|
2184
|
+
return new StatusResponse_Module().fromJson(jsonValue, options);
|
|
2283
2185
|
}
|
|
2284
2186
|
|
|
2285
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
2286
|
-
return new
|
|
2187
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StatusResponse_Module {
|
|
2188
|
+
return new StatusResponse_Module().fromJsonString(jsonString, options);
|
|
2287
2189
|
}
|
|
2288
2190
|
|
|
2289
|
-
static equals(a:
|
|
2290
|
-
return proto3.util.equals(
|
|
2191
|
+
static equals(a: StatusResponse_Module | PlainMessage<StatusResponse_Module> | undefined, b: StatusResponse_Module | PlainMessage<StatusResponse_Module> | undefined): boolean {
|
|
2192
|
+
return proto3.util.equals(StatusResponse_Module, a, b);
|
|
2291
2193
|
}
|
|
2292
2194
|
}
|
|
2293
2195
|
|